Hi
In IE7, FF and Chrome, your footer is at the bottom. So to me it seems ok.
As for linking your logo, I can help you with.
You nees to link it in your style sheet, where it says
background: url("h1.png") no-repeat scroll left top transparent;
float: left;
height: 99px;
margin-top: 10px;
width: 219px;
There you can ad this
background-image:url(http://yourlink.com);
Hope this helps
Kraai
Senior Poster
3,981 posts since Feb 2008
Reputation Points: 76
Solved Threads: 87
You had this to display the image.
background: url("h1.png") no-repeat scroll left top transparent;
You ad this to link the image:
background-image:url(http://yourlink.com);
Ps. I see your site on your last post linked is off.
Kraai
Senior Poster
3,981 posts since Feb 2008
Reputation Points: 76
Solved Threads: 87
to stay put
#footer { height: 150px;margin-top: 0px;margin-bottom: 0;text-align: right;clear: both; background-repeat:no-repeat;background-image: url('bg_body_2.jpg');background-repeat: no-repeat; }
could include instructions to keep it fixed and at the bottom of the page
#footer { height:150px;margin-top:0;margin-bottom:0;text-align:right;clear: both;background-repeat:no-repeat;background-image:url('bg_body_2.jpg');bottom:0;position:fixed;}
zero px is not valid in css, you missed one at 'margin-top' in your cleanup.
Production code is not indented or formatted, whitespace is useful for those developers who have not discovered code highlighting editors yet, but useless in production code it just adds extra download time, often 40-50% of html css js files is whitespace, that the browser doesnt need
almostbob
Posting Sensei
3,149 posts since Jan 2009
Reputation Points: 571
Solved Threads: 376
You had this to display the image.
background: url("h1.png") no-repeat scroll left top transparent;
You ad this to link the image:
background-image:url(http://yourlink.com);
Ps. I see your site on your last post linked is off.
Please ignore this BS
background is a shorthand entry for all the separate css properties applicable to background, and does NOT link the image body {background:#ffffff url('img_tree.png') no-repeat right top;}
almostbob
Posting Sensei
3,149 posts since Jan 2009
Reputation Points: 571
Solved Threads: 376
Please ignore this BS
background is a shorthand entry for all the separate css properties applicable to background, and does NOT link the image
body {background:#ffffff url('img_tree.png') no-repeat right top;}
And yet, we fail to provide the correct solution to link a background image to be clickable?
To the original poster:
Please see this solution to make the background image clickable via CSS, and hope this helps you.
Kraai
Senior Poster
3,981 posts since Feb 2008
Reputation Points: 76
Solved Threads: 87