Hey, to remove the sidebar go into the pages and choose fullwidth page template.
What do you mean by static menu? Can you post a link?
Hannah
Hey Hannah,
Thanks for the reply !
https://webhost.ischool.uw.edu/~adi1111/wp/. You might get a security error at times. you culd by pass it , as I am a univ student and our site is hosted by recognized Univeristy Of Washington server only.
THe problem is BBPress plugin is not a page , it creates a new thing like Posts/Pages called as Forum. In that there is no option like page to choose full width template. (I tried these things in custom css , none of these are working)
#bbpress .col-2cl .main {
background: none repeat-y right 0;
padding-right: 0px;
}
.bbpress .col-2cl .main {
background: none repeat-y right 0;
padding-right: 0px;
}
#bbpress-forums .col-2cl .main {
background: none repeat-y right 0;
padding-right: 0px;
}
.bbpress-forums .col-2cl .main {
background: none repeat-y right 0;
padding-right: 0px;
}
.bbpress .main {
background: none repeat-y right 0;
padding-right: 0px!important;
}
.forum-archive .sidebar.sidebar_left {
display: none;
}
.forum-archive .template-page.content {
width: 100%;
}
By static menu I meant to freeze the menu bar.
Currently I am freezing my top bar by using this
#topbar {
position: fixed;
width: 100%;
top: 0;
z-index: 99999;
}
.admin-bar #topbar {
top: 28px;
}
.headerclass {
margin-top: 30px;
}
I want to freeze my menu bar as well> (Menu containing Fashion , Home and DEcor and other categories) Can ou plese help
To remove the sidebar from all bbpress pages you have to use a child theme and add this function in the child theme functions.php file.
add_filter('kadence_display_sidebar', 'bbpress_sidebar');
function bbpress_sidebar($sidebar) {
if (is_bbpress()) {
return false;
}
return $sidebar;
}
Kadence Themes
Thanks a ot guys ! It worked !!!!!!!!!!!!!!
One quick question , if I create a top bar menu the links are appearning on the left side corner , can I move them to the right just before the search bar. Can you help me with the CSS for that please ?
adithya1111,
In theme options > topbar settings enable the topbar layout switch. Then in appearance > widgets add the search widget. Then to move it right you can add this to your custom css box in theme options:
.kad-topbar-right #topbar-search .form-search {
float: right;
}
Hope that helps!
Hannah
THanks for the input ! If I did this , the menu items are moved to the right and the search comes before the menu items somewhere in the middle
My requiremnet is in the top bar I want them in the following order in right corner
Menu Item 1 Menu Item 2 Search Bar.
Search Bar should be in the extremee right and the menu items just before the searrch bar. Can you please help me in achieving this.
Can you post a link? The one above doesn’t seem to be working.
https://webhost.ischool.uw.edu/~adi1111/wp/
This is the URL , You could by pass the security settings for the first time.