We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

darklets theme without sidebar [Solved] | Forum

Topic location: Forum home » Support » General Questions
Anas mansour
Anas mansour Jun 5 '14
hi

i want the darklets theme but without the sidebar
or how i can remove it and get its space to the main column
The Forum post is edited by ross Jun 6 '14
ross Team
ross Jun 6 '14
go to base.css of the theme


ow_sidebar{

//add this line

display: none;

}


then you will need to edit the left margin of 


ow_page_container, something like that to align it to center: 


.ow_page_container {    width: 1000px;    margin: 0px 0px 0px 196px;    }


also you can play with the width of ow_canvas and ow_menu_wrap

Anas mansour
Anas mansour Jun 6 '14
thanks ross
it works well