Hi,
I would appreciate any help with this. I am using the theme ygo-assorted-11, and the name of my blog only appears as a mouse rollover in ie7. When I move the mouse, the name disappears. The site is http://anirishmanabroad.net .
Many thanks.
Hi,
I would appreciate any help with this. I am using the theme ygo-assorted-11, and the name of my blog only appears as a mouse rollover in ie7. When I move the mouse, the name disappears. The site is http://anirishmanabroad.net .
Many thanks.
Can't pull up that URL, but I can get to:
http://anirishmanabroad.net/wordpress/
You've got this in your style.css file:
#top a:hover
{
text-decoration:none;
color:#999;
}
#top h3 {
font-size:2em;
font-weight:normal;
margin:0px;
padding:10px 0px 0px 15px;
}
#top h3 a{
background:inherit;
color:#D9FDD2;
text-decoration:none;
}
Personally, I'd condense/reorganize it to something like:
#top h3 {
font-size:2em;
font-weight:normal;
margin:0;
padding:10px 0 0 15px;
}
#top h3 a:link, #top h3 a:visited{
color:#D9FDD2;
text-decoration:none;
}
#top h3 a:hover, #top h3 a:active{
color:#999;
}
I think the issue really might be your background:inherit definition. No need for that.
Thank you so much for your help. Actually, I was able to fix it by changing it as follows:
#top h3 a{
background:inherit;
color:#D9FDD2;
text-decoration:none;
position:relative;
}
#top p {
font-size:1em;
font-weight:normal;
margin:0px;
padding:0px 5px 1px 20px;
color:#fff;
position:relative;
}
This topic has been closed to new replies.