Border around text in header?


Author Message
Matt Marcinek

Posted: 9/29/2009
Quote message 

I have a client who wants a border around the text in the header, not the header itself just the text, how can i do this?
 
Martin

Posted: 9/29/2009
Quote message 

Find this in the style.css
.art-Logo
{
display : block;
position: absolute;
left: 10px;
top: 92px;
width: 864px;
}

and add

border: solid;

so you get

.art-Logo
{
display : block;
position: absolute;
left: 10px;
top: 92px;
width: 864px;
border: solid;
}

Martin
 
Garry

Posted: 9/29/2009
Quote message 

I agree with Martin, but your border will touch right end of header and it'll be better if you reduce its width by decreasing the value of width property.