Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS [Solved] Background Image Anchor Re: [Solved] Background Image Anchor

#71434
tsaw
Member

SOLVED!

OH Yes! I see it now… I needed to move the anchor inside the divs and separate that from the form input box.

I used your suggestion on the code and tweaked it and this is working the way I want it…

I just had to move the background image line into the a#logo css code… and add the href to the line of code in the html.

I greatly appreciate you taking time to help me!

Thanks!

Tim

Here’s how the final version ended up:

Code:
CODE:

CSS CODE:
/** Logo Panel **/
#logopanel {
width: 815px;
height: 117px;
float: left;
}

a#logo {
display: block;
width: 815px; /* up to the search box */
height: 117px ; /* height of header */
text-indent: -9999px;
float: left;
background-image: url(../../../default/files/templateimages/level1_04.jpg);
}