Hi,
in Sanidine II, the Module Position “left” is shown, as the name says, left and the main content in the middle:
I wanted to switch those two positions, like that:
So I came up with the idea to copy the attributes of the “#ja-col1” class (in template.css) and paste it to the “#ja-content” class and the other way round. I thought, that way they would simply switch positions. Problem is, that the floating doesn’t seem to work anymore:
The CSS Code for Image 1 looks like that:
#ja-content {
clear: both;
display: block;
float: right;
width: 60%;
background: /*url(../images/content-center3.gif) repeat-y center #FFFFFF;*/ }
#ja-col1 {
float: left;
overflow: hidden;
width:40%;
}
The CSS for Image 3 looks like that. I just switched the attributes…
#ja-content {
float: left;
overflow: hidden;
width:40%;}
#ja-col1 {
clear: both;
display: block;
float: right;
width: 60%;
background: /*url(../images/content-center3.gif) repeat-y center #FFFFFF;*/
}
Does anyone know what to do?
Thanks