and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]
I'm new to CSS, so this is probably something simple to many of you.
I have three columns, left is navigation bar, middle is main text, right is another navigation bar.
Here are the style definitions:
[syntax="css"]
#leftcolumn {
color : #333;
background : #fff;
margin : 0 0 0 0;
padding : 10px;
min-height : 850px;
width : 200px;
float : left;
}
#middlecolumn {
float : center;
color : #333;
background : #fff;
margin : 0 0 0 0;
padding : 0;
min-height : 870px;
width : 100%;
display : inline;
}
#rightcolumn {
color : #333;
background : #fff;
margin : 0 0 0 0;
padding : 10px;
min-height : 850px;
width : 200px;
float : right;
}
and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read: [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]
Last edited by Josh1billion on Fri Nov 30, 2007 9:05 pm, edited 1 time in total.
I tried integrating your code with mine to get it to work but the problem persisted, so I created a new file from scratch and copied-and-pasted your example and it worked perfectly, so I must just be integrating it wrong.. I'll try again when I get back home later tonight.