have looked at both recommended posts on changing to a 2 column layout in the FAQ
both posts go back a while, the latest post in both were early 2009.
Now the 1st post says :
There are 3 places where absolute and relative are used in the stylesheet.
#wrapper - remove the relative line here
#content .post - remove the relative line here
#content .post-details - remove the absolute line on this one.
I can find the first part (#wrapper)
but the 2 others aren't anywhere in my css.
the 2nd post states:
Re: How to Increase Content block, remove right sidebar
Postby AreenMarie » Mon Jan 26, 2009 3:21 am
Here's what I've done to move the post details to the bottom of the post, and then widen the available post space.
Use Edit Themes, Select Stylesheet
Scroll down until you find: #content.post{
#content .post {
float: left;
position: relative;
// width: 640px;
width: 750px;
}
Comment out the original width of 640px (I don't believe in deleting good code. Comment out the code just in case it doesn't work.)
Add "width: 750px;"
Scroll down until you find: #content .post-details {
#content .post-details {
// bottom: 20px;
// position: absolute;
// right: 0px;
// width: 120px;
padding: 12px;
}
Comment out the original bottom:, position:, right:, and width:, settings.
Add "padding: 12px;"
again, cant find these entries.
So what I want to know is how much has the new theme css changed and how can I make it so that the column (2nd sidebar i beleive) on the right is gone? All I want is the sidebar and the main post area.
Bear in mind i'm a complete idiot when it comes to css. lol