NolaWordP
Member
Posted 1 year ago #
I'm using Grunge wall as a theme and need to change the post/page font colors to white instead of gray. I've managed to change them for headers and sidebar but can't seem to find the right place for posts. I think the hex code is fff for white. Does anyone know exactly where this would be put? I've posted the code below. Many thanks in advance!
NolaWordP
Member
Posted 1 year ago #
I don't know why the past bin link didn't show up- it's here:
http://pastebin.com/2Cd38x0E
Post your url will help .
NolaWordP
Member
Posted 1 year ago #
It's at http://neworleansbook.com. Thanks for taking a look.
In your "style.css" for your theme, find the following code:
.entry{
font: 12px Arial, sans-serif;
color: #B7B7B7;
margin: 5px 0;
position: relative;
z-index: 1;
}
Just change color to #fff;
Look for this code
.entry {
-x-system-font:none;
color:#B7B7B7;
font-family:Arial,sans-serif;
font-size:12px;
font-size-adjust:none;
font-stretch:normal;
font-style:normal;
font-variant:normal;
font-weight:normal;
line-height:normal;
margin:5px 0;
position:relative;
z-index:1;
}
style.css (line 450)
* {
Change #B7B7B7 to #FFFFFF
NolaWordP
Member
Posted 1 year ago #
That works great! I was looking for .post but it was the .entry. I knew it had to be something like that. Thanks very much guys!