Recent Topics

1 May 06, 2005 09:34    

Hi,

At www.smokysundays.com i've removed the Blog Name, and the Blog list in the Header, so now only displays an image (included in the CSS).

Is there a way to add a link to the image, to point it to the main page?

As i said, the image is set on the CSS, and not directly in HTML.

Thank you a lot,

Lucas.

2 May 06, 2005 09:45

change this :-
<div id="header">
<h1>&nbsp; </h1>
</div>

to this :-
<div id="header">
<a href="http://www.smokysundays.com/" title="Home page"><span>smoky sundays</span></a>
</div>

and then change this :-

#header {
background : url(img/kubrickheader.jpg) no-repeat bottom center;
background-color : #d5d6d7;
margin : 0 0 0 1px;
border : none;
padding : 0;
height : 200px;
width : 758px;
}

to this :-

#header a{
background : url(img/kubrickheader.jpg) no-repeat bottom center #d5d6d7;
margin : 0 0 0 1px;
border : none;
padding : 0;
height : 200px;
width : 758px;
display:block;
}

#header a span{display:none}

¥

3 May 06, 2005 09:51

Wow.. thank you a lot for the quick and useful answer!!

It works great.

Lucas

5 May 06, 2005 21:29

I use


<div id="header" onclick="location.href='http://tin-men.net/';" style="cursor: pointer;">
&nbsp;
</div>

No hacking of the css, nice and easy. Obviously you'll need to change the url to your own...

6 May 07, 2005 09:12

That way works just as well Graham,

I tend to use the method I posted as it works without javascript which is a habbit I'm trying to get myself into so that my sites have a chance of passing the accessability standards.

¥


Form is loading...