Change page title txt color
-
To have three widget areas in the footer, you must do two things…
1. Make sure you have the footer area set to three columns in the admin area.
2. Make sure you have three widgets in the “graphene_footer_widget” area.
If you have done both of these correctly, you should see it displayed as three widgets horizontally across the bottom.
If this is not what you see, then something is wrong, and perhaps you have a plugin conflict.
Once again thanks, I got my 3 columns back but know I can not change the blue text back to black as mentioned in the original post.
This is how it looks in the editor. Is this correct?
.child-page .entry-content {
margin-top: 0;
}
.child-page .entry-content p {
line-height: 18px;
margin-top: 5px;
}
.child-page .post-title {
border-bottom: none;
margin: 0;
padding: 0;
}
.post-title a, .post-title a:visited {
border: medium none;
color: #020202;
}
.adsense_single {
text-align: center;
float: none;
}Please put your code between backticks.
Thanks for the reply. I copied this out of the editor, the only thing I added was:
.post-title a, .post-title a:visited {
border: medium none;
color: #020202;
}Would you be kind to show me what you mean? I don’t understand what you mean by backticks.
My web site is http://www.raymondvilleupc.com
and the page titles are blue, I need them black.
Backtick is the key located above the tab in a standard keyboard. Hit that key once before you paste your code and hit again after pasting the code. It prevents the code from being parsed.
.post-title, .post-title a, .post-title a:visited {
color: #000000;
}Please note that post titles don’t have anchor tag. So, including
.post-titleis a must. Don’t repeat the same thing. Look at the code carefully..post-title, .post-title a, .post-title a:visited {
color: #020202;
border: medium none;
}This is what I know have ( see below) and it still does not work. I have what I added in brackets.
What am I doing wrong? the font color is still blue. I guess I do not follow you. Did I put the code for the font color in the right place. IF it is in the right palce can you copy and paste the way it needs to be or if it need to be pasted some where else please tell me. I tried to follow the original directions.
.child-page .entry-content p {
line-height: 18px;
margin-top: 5px;
}
.post-page .post-title {
border-bottom: none;
margin: 0;
padding: 0;
}
[.post-title .post-title a:visited {
border: medium none;
color: #020202;
}]
.adsense_single {
text-align: center;
float: none;
Your custom CSS code is messed up. There are two unnecessary square brackets, no closing
}brace for.adsense_singleand there is no comma,after.post-titleetc..,
- You must be logged in to reply to this topic.
