Got a wordpress blog sort of up and running but when you select the 2 column layout it doesnt line up.
Example here
I believe its something to do with the width and the padding but Ive tried to work out the correct width but I sadly cant crack it.
Here is the css (think its the correct section of css rather than copying the whole lot) if anyone can shed any light on it?
If you need to see the whole css file then here is the link
Hopefully it should be something obvious for someone?
Thanks
Example here
I believe its something to do with the width and the padding but Ive tried to work out the correct width but I sadly cant crack it.
Here is the css (think its the correct section of css rather than copying the whole lot) if anyone can shed any light on it?
Code:
LAYOUT: Two columns
DESCRIPTION: Two-column fixed layout with one sidebar right of content
*/
#container {
float: left;
margin: 0 -240px 0 0;
width: 1024px;
}
#content {
margin: 0 280px 0 20px;
}
#primary,
#secondary {
float: right;
overflow: hidden;
width: 220px;
}
#secondary {
clear: right;
}
#footer {
clear: both;
width: 100%;
If you need to see the whole css file then here is the link
Hopefully it should be something obvious for someone?
Thanks