Recent Topics

1 Nov 20, 2007 19:08    

My b2evolution Version: 2.x

I'm having the biggest problem with something prhaps silly.

I have this:


#header h1
{
position: absolute;
font-size: 23px;
letter-spacing: -1px;
top: 30px;
height: 192px;
}

When I have a link inside the header and h1 section...
I want to apply a specific style o that link

<div id="header">

<h1><a href="http://wmyLink.com">TheBlog</a></h1>
</div>

For some reason, I can't make the link inside th h1 brackts to look like I need it to look.

Help?

Thanks.

2 Nov 20, 2007 20:11

It is confusing but I found you have to actually style the widget as well...

.widget_core_coll_title a {
	text-decoration: none;
	color: #78a;
}

3 Nov 21, 2007 01:21

Using "#header h1 a" as selector would not work? (instead of ".widget_core_coll_title a")

4 Nov 21, 2007 02:07

I found it a real problem blueyed.

Playing with the widget was the only way I could style as an active and on hover link

5 Nov 21, 2007 05:50

I did get it to work:

#header h1 a {
text-decoration: none;
color: white;
font-size: 70%;

}


Form is loading...