I'm working on an CSS based Template for a CMS called Mambo.
The problems I have are usual CSS problems.
If you could take a look at my homepage on http://www.musicones.de.
You'll see I'm trying to make an 3 columns design,
but the content doesn't show where I want it to.
Here is a link: http://www.mambers.com/attachment.php?attachmentid=368
to an picture I've made, that shows the div-tags of the index.html.
Here are the CSS Styles for: leftCol, mainCol and rightCol:
(I think and hope that the problems is in there)
#leftCol {
float: left;
margin-left:-200px;
margin-right:1px;
position: relative;
width: 200px;
}
#maincol{
background-image: url(../images/mainbody.png);
background-repeat: repeat;
background-attachment: scroll;
float: left;
width: 100%;
margin: 0;
position: relative;
}
#rightCol {
/*/*/ width: 200px; /* hack keeps NN4 right column right? */
float: right;
position: relative;
margin-right: -200px;
margin-left: 1px;
}
I hope you can help. I have no Idea. If you need other styles
I will post them
thanks and regards
Antonio Cambule
You can find a complete set of styles for doing a three-column layout here:
http://glish.com/css/7.asp
I notice that it does NOT use "float", but you can see more detail there.
Stan Scott
New York City
Antonio Cambule <ant...@stueber.de> wrote in message news:<2lpvkjF...@uni-berlin.de>...