Code:color: #fff; text-shadow: 1px 1px 1px #000;
You mean something like this?
Thank you for the response! No not just shadowing, but to have that text actually in a block that I can format the background color on. As far as I can tell with my limited experience with 2.0, that's the only text that displays directly on the page background - i.e. there is nothing between it and the page background that you can format(?)
.p-title-value {
color: #fff;
text-shadow: 1px 1px 1px #000;
}
Thanks guys! I think you provided enough info for me to work through it. Sometimes I just get stuck on the simplest stuff and I can't explain it properly.
Is there something like a visual style sheet for 2.0 that I can use as a reference?
.p-breadcrumbs and .p-body-header are the two you need to style via extra.less if you want to place background colours behind them but they will need more than that, they will need padding and additional styling.
.p-breadcrumbs {
color: #fff;
text-shadow: 2px 2px 4px #000;
}
Interestingly, I cannot get breadcrumbs to format. I put this in extra.less and nothing happens:
Code:.p-breadcrumbs { color: #fff; text-shadow: 2px 2px 4px #000; }
.p-breadcrumbs>li a {
color: #fff;
text-shadow: 2px 2px 4px #000;
}
Interestingly, I cannot get breadcrumbs to format. I put this in extra.less and nothing happens:
Code:.p-breadcrumbs { color: #fff; text-shadow: 2px 2px 4px #000; }
It seems like it is picking up the shadow, but the text color remains dark green?
.p-breadcrumbs {
color: #fff !important;
text-shadow: 2px 2px 4px #000;
}
Did u try my answer above his?No joy. Cut and paste of your code and it still sits there dark green. It is live on my site....
No joy. Cut and paste of your code and it still sits there dark green. It is live on my site....
use this
.p-breadcrumbs>li a
{
color: #fff;
text-shadow: 2px 2px 4px #000;
}
If you change it to white you are going to have a white text color which doesn't go well with white background as well. How are you going to sort that out exactly?
Interestingly, I cannot get breadcrumbs to format. I put this in extra.less and nothing happens:
Code:.p-breadcrumbs { color: #fff; text-shadow: 2px 2px 4px #000; }
It seems like it is picking up the shadow, but the text color remains dark green?
How can I place a neutral color under this text?
.p-breadcrumbs>li a {
background-color: xf-intensify(@xf-contentBg, 3.5%);
}
.p-body-header {
background-color: xf-intensify(@xf-contentBg, 3.5%);
}
Would it not be easier to just have the background image in the header and leave the other containers with default background colours? You'd save yourself a lot of work.
We use essential cookies to make this site work, and optional cookies to enhance your experience.