Buzzerchat blog css possible link hover problem

Hello All,

I have just added blog here http://www.buzzerchat.com/blog/ now you can i added custom header by opening header.php and it shows header correctly but if you go to this address http://www.buzzerchat.com/blog/2010/09/22/ajax-chat-welcome-to-buzzerchat-com/ you will notice menu links became small ? so how can i fix this to make it look like main page of blog http://www.buzzerchat.com/blog/

I am just starting with blog.

Look in header.php and find the body_class() function. If it is not there, then look for include() and require() functions (and include_once() and require_once())

Find them and open those pages up. body_class() function should be in there.

could you please attach style.css which i need to replace ? as i am using wordpress there is no such class in body.

i opened header.php and it showed

<body <?php body_class(); ?>>

there is also no home blog class.

Thanks, this worked out!

As you already have a class on the links themselves you should be able to get away with doing this in css.


a.blog:link,a.blog:visited,a.blog:hover,a.blog:active {
    color:black;
    font-size:12pt;
    font-family:Tahoma;
    font-style:bold;
    text-decoration:none
}


Hi,

On the block page you have a class of blog in the body tag which picks up this rule.


[B].blog a:link[/B]{color:black;font-size:12pt;font-family:Tahoma;font-style:bold;text-decoration:none}
.blog a:hover{color:black;font-size:12pt;font-family:Tahoma;font-style:bold;text-decoration:none}
.blog a:active{color:black;font-size:12pt;font-family:Tahoma;font-style:bold;text-decoration:none}
.blog a:visited{color:black;font-size:12pt;font-family:Tahoma;font-style:bold;text-decoration:none}
 


<body class="home [B]blog[/B]"> 

You have no such class in the body tag of the other page so the style isn’t picked up. If you add it it then it should work.

(You do rather confusingly have the link holding a class of .blog also but that will never be seen by the rule above.)