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

How to hide sidebar? [Solution available] | Forum

ramesh ten
ramesh ten May 29 '13
Hello friends,
plz help me.
plz tell me,
how to hide sidebar from user's profile?
for eg.http://mysite.com/user/xyz "profile page withoutsidebar"
if i used this css code
.ow_sidebar { display: none;

it remove sidebar from all pages.
But I want to remove it only from user's profile.
The Forum post is edited by Alia Jul 1 '14
Attachments:
  2013-05-29_233842.jpg (79.79Kb)
Daisy Team
Daisy May 30 '13
Ramesh, it isn't enough to simply make the changes in CSS to hide the Sidebar. If you want it to work correctly, you need to develop your own theme and plugin with the Sidebar removal condition for the specific page.

Please see the crash course for more information here: http://docs.oxwall.org/dev:crash-course

If you are not familiar with the plugin development, it would be better for you to find a developer who can help you with this plugin development. I suggest visiting our Oxwall Market.
ramesh ten
ramesh ten May 31 '13
Resolved
To hide the side bar in profiles

Admin - Pages & menus - User Profile

Place this code into a custom text/html box

<style>
.ow_sidebar{
display: none;
}
.ow_content,
.ow_footer
{
width: 1000px;
}
</style>


Daisy Team
Daisy Jun 5 '13
Ramesh, this is a good solution. Thanks for sharing it with us.
Siro
Siro Jun 28 '14
nice code it worked thanks so so so much
OW-Ghost
OW-Ghost Oct 4 '15
thanks it worked :-)