Help with 3-column CSS
Page 1 of 1
Help with 3-column CSS
i want to re-organize my website adding 3 columns with css. the left nav, the body, and the right nav., but when i put float right on the right nav the body box goes shorter and sometimes it moves to the bottom and the footer moves to a different location.i hope the forum can understand what im trying to say.
thanks
--
Thanks Rafael - www.htmltutorialtopics.com
Thanks Rafael - www.htmltutorialtopics.com
Re: Help with 3-column CSS
Like this? http://mauricet.ma.funpic.org/column/test.htmlRe: Help with 3-column CSS
Can you post your css code.Re: Help with 3-column CSS
To fix the footer problem, what I do is that i'd place those 3 divs to a container div. On that container div, I'd assign a clearfix class (somekind of solution I got from a nettuts site).- Code: Select all
.clearfix:after { content: " "; display: block; height: 0; clear: both; visibility: hidden; }
.clearfix { display: inline-block; }
* html .clearfix { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */
.clearfix { display: block; }
For those 3 divs, I'd assign the appropriate widths and a float:left; for each.
--
Jumpstart your fitness and know how to get better results with perfit personal training
Jumpstart your fitness and know how to get better results with perfit personal training
Re: Help with 3-column CSS
Hello rswebs, You may see the tutorial for 3-column CSShttp://www.lazywebdesign.com/cssdiv-3-column-page-layout/104
Re: Help with 3-column CSS
Keep all your divs in float left position and make their width to 20% 60% 20% respectively. Now your all three divisions will be aligned to left. You can set the padding to keep the text separated from each other.--
The computing and fun with click for Micromax fun book
The computing and fun with click for Micromax fun book
Re: Help with 3-column CSS
I have a hard time getting my padding set on my own website. It's a bit of trial and error when I do it. Is there an easier way to find out how much you need to edit it for the website to look nice? It takes me a dozen or more times to get the padding right and my girlfriend makes fun of me because I build websites for a living.--
Is there a certain type of HTML I should be using when trying to create an e-commerce store that sells a survival seed bank supply? I want something that will help me to target gardeners that are interested in my product.
Is there a certain type of HTML I should be using when trying to create an e-commerce store that sells a survival seed bank supply? I want something that will help me to target gardeners that are interested in my product.
Re: Help with 3-column CSS
steveelkins wrote:I have a hard time getting my padding set on my own website. It's a bit of trial and error when I do it. Is there an easier way to find out how much you need to edit it for the website to look nice? It takes me a dozen or more times to get the padding right and my girlfriend makes fun of me because I build websites for a living.
steveelkins
Practice Make Men Perfect
Page 1 of 1