Change page title txt color
-
First of all, I want to thank everyone for their help but apparently I am doing something wrong. Listed below is a copy of the child page entries under the css editor. The addition, that I added, to change the page titles from blue to black are inserted at the end of the list. I keep re-pasting it into the fields in different places but to no avail. Am I doing it correctly, is it in the right place?? If I am not, please, someone copy the code I have listed and correct it for me in a post the way it ought to be. I don’t understand all the jargon, this is my first attempt to change code. Thanks
.child-page {
background: #E9ECF5;
padding-bottom: 10px;
padding-top: 10px;
}
.child-page .entry-content {
margin-top: 0;
}
.child-page .entry-content p {
line-height: 18px;
margin-top: 5px;
}
.post-page .post-title {
border-bottom: none;
margin: 0;
padding: 0;
}
.adsense_single {
text-align: center;
float: none;
}
.post-title a, .post-title a:visited {
border: medium none;
color: #020200;
}I don’t want to repeat it, but, please put your code between backticks.
Okay, if you are going to add the custom css in child theme’s style sheet, try this instead.
.post-title, .post-title a, .post-title a:visited {
border: medium none !important;
color: #020200 !important;
}Thank you, that worked. The backticks were not allowing the code to work. Also I got this graphene theme off of wordpress because that is what i use.
One more question and I am done. I want the bottom front page widget area to be all one color. If I do the widget background area there is still a big white area showing because the widget column does not fill the area
Add backtick only in this forum while sharing the code. Not in your style sheet!
#sidebar_bottommay I beg of you for one more question. Below the front page footer, which I changed the color, thank you, there is a white band that runs across the bottom of my home page. I am not sure what that is called so I can change that color also. Can you help one more time.
Give this a try. (Untested)
#footer {
background: url("../graphene/images/sprite_h.png") repeat-x scroll left -1385px #111111;
padding-top: 15px;
}Okay, scrap that suggestion. Try this.
#footer {
background: #111111;
padding-top: 15px;
}
- You must be logged in to reply to this topic.
