Atm i have a logo on my site that is defined in the stylesheet as a bg image, is there anyway that i can make this into a clickable link back to the home page (as seems to be the norm?) If there is a way this would be a lot easier than changing all of the php pages as there are quite a few :S thanks
Background images cannot be links as far as I am aware. The best way to do it would be to alter the element (ie the table cell or div) that the image is the background of to be a link rather than the making image itself a link.
You would be better served by making the logo image foreground. Then, if images are disabled, the alt attribute's text will display in its place. <div id="topbanner"> <a href="index.html"><img src="logo.png" alt="ABC Co."></a> ... </div> Code (markup): cheers, gary
Background images are used so that text and other images can be placed on top of them. If you could make a background image clickable, with a large image it would make things a tad difficult. Regards Roger