I can't seem to get the hellip in the features section to show white. It's likely because I changed all font to be #333333 with the following css:
Best Answer Rob , 14 February 2013 - 04:41 AM
It seems you didn't apply a 0 in the right place:
.fexcerpt *:first-child {
margin-top: 0;
}
Adding color: #ffffff; to this turns the hellip white.
Posted 14 February 2013 - 03:11 AM
I can't seem to get the hellip in the features section to show white. It's likely because I changed all font to be #333333 with the following css:
Posted 14 February 2013 - 03:29 AM
Hi,
The hellip is actually showing white. However, the fonts in the slider have a text shadow which somewhat vanishes into the overlay, but helps the text stand out. Because the hellip is small, the shadow (black), stands out more.
Using Firebug or Chrome's inspection tool, you may adjust it.
The original code is found here:
You can see it has a -1px offset, which is why you're able to notice the black shadow, appearing grey due to the overlay.
Posted 14 February 2013 - 04:33 AM
I had already changed the shadow to 0 so now it's just the grey text. I still can't seem to figure out what the issue is, here is the site:
you can see the "..." grey there.Posted 14 February 2013 - 04:41 AM Best Answer
It seems you didn't apply a 0 in the right place:
Adding color: #ffffff; to this turns the hellip white.
Posted 14 February 2013 - 05:41 AM
hmmm. placing the following css fixed the situation in chrome:
Posted 14 February 2013 - 05:52 AM
Nvm, i took out the margin-top and just left the color:#ffffff and all works fine. maybe i did somethin wrong there, anyways looks to be resolved. thanks.
Posted 14 February 2013 - 05:54 AM
Where are you adding it?
It should go in Dashboard > PageLines > Site Options > Custom Code in the CSS Rules area anywhere after body {}.
Do you have a cache plugin installed and activated? If so, clear the cache from the plugin's settings.
Posted 14 February 2013 - 05:56 AM
Glad it's resolved.