To the best of my knowledge , the color of the page title inherits the color of the post title . I want a seperate color for the page title . how can i do it . Any help will be appreciated. I changed the ".page title" and it is not working
ThemeShaper Forums » Power Blog
How can i change the color of the page title
(6 posts)-
Posted 3 years ago #
-
Sober,
find defaut.css archive (wp-content/themes/thematic/library/styles), then change color in the div .entry-title a (line 254 - if you did not change the original code still)
Another tip: if you use Firefox, you can install the Web Developer plugin http://chrispederick.com/work/web-developer/ , then you can find every css code and many other things to do your changes, its a BIG TOOL for us !Have a nice day,
Oscar
Posted 3 years ago # -
If you need to only affect a change to 'page' titles then prepend the h1 class with the body class unique to pages like so:
.pages .entry-title {color:#aaa;}And just a reminder it's not recommended to make changes to files inside the thematic directory. The framwork is designed to be used with a child theme and these changes should be made inside your child theme's stylesheet. Editing inside the parent framework will come back to haunt you when the framework gets updated and you want to upgrade thematic.
Posted 3 years ago # -
em hr,
By the way...I´d put the defaut.css inside the my child theme directory, like yours recommended !
It was ?Thanks a lot
oscar
Posted 3 years ago # -
Sorry but I'm a bit of a nubbins at this, could you please explain a little further? I'm looking to style my page titles seperately from my post titles and I just can't figure it out.
Currently I've inserted the following CSS:
.pages .entry-title h1 {color:#600;}
No change so far, I've tried deleting the other .entry-title css but no luck.
{My CSS file was copied from the original Thematic folder and inserted / linked to my current child theme}
I'm hoping that I haven't made any changes prior to now that mucks up the standard CSS. Firebug is showing
Line 278 default.css
.entry-title {
font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
font-size:22px;
color:#333;
/*font-weight:bold;*/
line-height:26px;
/*padding:0 0 7px 0;*/For both page title and post title
Any help greatly appreciated
Corbs
Posted 3 years ago # -
Solved, page instead of pages
Cheers
C
Posted 3 years ago #
Topic Closed
This topic has been closed to new replies.