Hey,
How ca i remove the category sidebar from homepage? I want that my post to be wider. I did a screen for you, i want to remove the sidebar so the content will be wide as the red square.
Screen
1 Answers
Hi,
To resolve this issue, you can add the following code to the style.css file:
#side-content {
display: none;
float: left;
}
#content {
margin-right: 130px;
}
#main-content {
float: left;
margin-left: -210px;
}
Hope this helps !
Thx, it worked. I had to change some values in the template.css too.
Please login or Register to submit your answer