Hello Kriesi,
I was able to remove the sidebar from the search page using the CSS:
.search .sidebar { display: none !important; border: none!important; }
.search .container .nine.units { width: 100% !important; border: none !important; }
I am trying to remove the post/blog suggestions at the bottom however after putting this CSS, it only removes the heading but not the blog/post suggestions:
.search-no-results .widget avia_combo_widget, .search-no-results h3 { display: none!important; }
I put a link below to the page for reference.
Thanks!
Hey tlchase,
Please try this instead:
.search .avia_combo_widget {
display:none;
}
Regards,
Rikard
Thanks Rikard, that worked great however the page is not at 100% width (still shows the sidebar division lines)
I have the following CSS but it is not accomplishing this:
.search .sidebar { display: none !important; border: none!important; }
.search .container .nine.units { width: 100% !important; border: none !important; }
.search-no-results .widget avia_combo_widget, .search-no-results h3 { display: none!important; }
Please let me know what I may be missing.
Thanks again for a great layout and even better support!!
Hi,
use this code to hide sidebar division line:
.sidebar_left .content {
border-left: none;
}
Best regards,
Andy
Thank you Andy, this got rid of the side bar division line.
I also added the following to remove a second division bar and have the whole page visisble at 100%:
.sidebar_left .author-extra-border {
border: none;
}
.container .av-content-small.units {
width: 100% !important;
}
Thanks again for a great theme and great support!