Link in CSS

R

Rokli

Hello. I have a question. Maybe it's just not possible within CSS, but
I try it anyway.

I have a HTML website with a css. The logo is loaded from the css,
like this :
==========

#container-name {
float: left;
height: 80px;
width: 655px;
background-image: url(images/logoweb2008tel.jpg);
}

==========

But... i want to be able to click on the logo (logoweb2008tel.jpg) and
go to another page.
Not an external page but for example contact.html or so.

Is this possible within CSS or isn't ? Please let me know.


Kind regards,
Robert
 
R

Ronx

Not possible.
Background images cannot be clicked on.
HTML is used for clickable links, never CSS.
 
Top