If you add the following code to the bottom of your style.css file it will removed the text shadow and make the text white. That is much easier to read IMHO.
A word of warning. Since it does not appear that you are using a child theme this fix may be overwritten if you update the “Boston” Theme. To make the fix more permanent i would look at installing a custom CSS plugin, or creating a child theme.
.entry {
color: #FFFFFF;
text-shadow: none;}
‘
I managed to find this in the CSS
.entry {
margin: 0px 0px 0px 0px;
padding: 0px 0px;
text-shadow: -1px 1px 0px #fff;
}
Then i changed it to this:
.entry {
color: #FFFFFF;
text-shadow: none;}
}
It got rid of the shadow but now my text is completely black and I’m not sure what to do to change it 🙁 > http://no2nsa.x10.bz/blog/former-nsa-teammates-launch-area-1-security-snag-2-5-million/
What should i do 🙂
ALSO: The index page for my blog text is white and it is clear now! Just when i go to a post on my blog it shows the text black not white. Here you can see this here > http://no2nsa.x10.bz/blog/
HERE IS A PICTURE: http://i58.tinypic.com/2yo4vbn.png
Here is my CSS can you help me fix this problem 🙂
Some parts of the post is black text and then the rest is white… I’m so confused lol. Hope you are able to help me fix this 🙂
http://pastebin.com/tyFyCcAa
There is an extra bracket in the code you posted. Remove the last } symbol.
Also don’t replace the code. Just put what I gave you at the end of the stylesheet.
I’ve put the code back then added the other code to the bottom of my CSS but still have the same black text at the top of blog post but then the bottom half is all white. :/
Is this correct?
http://i58.tinypic.com/2mpz7ux.png
I don’t see that on the tabket and I’m going to be away from my laptop fir the rest if the night. I’ll be happy to look at in the morning.
I have no clue then cause it keeps appearing on random posts like some of the posts will be fully white text then some of the posts have half white and half black. This is both on Firefox and Google Chrome 🙁 –
Here is one that works fine:
http://no2nsa.x10.bz/blog/green-politicians-launch-legal-challenge-over-gchq-surveillance/
Then here is one that doesn’t:
http://no2nsa.x10.bz/blog/germany-to-thwart-internal-nsa-probe-reports/
I have no clue what is going on to be honest 🙁
Have a nice night and thanks for giving me help! Also If you have any other way we can contact easier so I can provide you more ways of seeing the files then please let me know. Would mean the world to me if you are able to fix this! My twitter followers keep complaining about it haha. Night!
I just looked at the links you sent as well as the screen shot. I don’t see the problem you captured in the screen shot. I did need to refresh the page to show the updated css so be sure you do that.
If you are still having problems you can try adding:
body {
color: #FFF;
}
To the end of your CSS file, but that may have broad repercussions across the site.