jdubwelch Posted April 26, 2006 Share Posted April 26, 2006 [img src=\"http://www.jwelchdesign.com/images/ao.jpg\" border=\"0\" alt=\"IPB Image\" /] This is a website i'm coding for a designer. I'm using css to style it. He designed it in Photoshop, I exported it as css and formatted his text with css the way it looked in Photoshop. Anyways, is there a way that the green bar accross the bottom can be moved down further if there is more text on the page?here's a link to my css [a href=\"http://www.jwelchdesign.com/ao/2006jpg/styles/layout.css\" target=\"_blank\"]http://www.jwelchdesign.com/ao/2006jpg/styles/layout.css[/a]i'm using absolute positioning, would relative work? Quote Link to comment https://forums.phpfreaks.com/topic/8414-auto-expand/ Share on other sites More sharing options...
moberemk Posted April 26, 2006 Share Posted April 26, 2006 Well, instead of using positioning, you could just stick the element there and give it clear: both; so that it goes to the bottom. That's what I tend to do. Quote Link to comment https://forums.phpfreaks.com/topic/8414-auto-expand/#findComment-30791 Share on other sites More sharing options...
jdubwelch Posted April 26, 2006 Author Share Posted April 26, 2006 do you have an example i could take a look at? Quote Link to comment https://forums.phpfreaks.com/topic/8414-auto-expand/#findComment-30846 Share on other sites More sharing options...
moberemk Posted April 26, 2006 Share Posted April 26, 2006 [code]<div id="footer">Footer Stuff Here</div>[/code]Put that at the end of the code. Then, you use this CSS:[code]#footer { clear: both; }[/code] Quote Link to comment https://forums.phpfreaks.com/topic/8414-auto-expand/#findComment-30895 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.