
Originally Posted by
harrisp9
Appears to me that your thumbnails are dead links =/ I'm running a Macbook pro, on mozilla firefox (latest ver). What problem are you having with your background footer? None is apparent to me.
-Paul
Yeah the thumbnails are dead links at the moment, nothing is in it's final state except from most of the design. The problem I have is that the background footer doesn't "cling" to the bottom of the page when it expands to more then your screen height. F.ex. if you run 800x600 it will stay at 600 and not be on the bottom of the page if the content runs to, say, 1200px. The footer within the content part is where it's supposed to be, but the one in the background (the lighter and plain colored) will stay put and not follow the content.
A bit hard to explain so I'll paste some code:
Code:
<body>
<div id="bgfoot"></div>
</body>
Code:
html, body {
position:relative;
padding:0;
margin:0;
height:100%;
text-align:center;
background:url('gfx/bg.png') repeat-x #34680d;
font-family:"Trebuchet MS",Trebuchet,Arial,Verdana,Sans-serif;
}
div#bgfoot {
display:block;
width:100%;
height:125px;
background:url('gfx/bgfoot.png');
position:absolute;
bottom:0px;
left:0px;
z-index:1;
}
One way I found around this particular problem is making another wrapper, but then I will have problems with the content not filling up the screen height.
Bookmarks