I am looking to make my search page full width. I found this article (below) from last year, but the changes are no longer applicable. It seems the code for the search.php has changed since then.
https://kriesi.at/support/topic/broadscope-full-width-layout-search-page/
I have removed the get_sidebar(); line, but the page still employs the same layout.
Thanks!
Better yet –
Is there a way to call a sidebar I’ve created via Widgets to take place of the default ‘pages’ sidebar?
I’m assuming by changing ‘page’ with something relating back to the widget sidebar is the way to go about this. Am i correct?
$avia_config['currently_viewing'] = 'page';
Hi!
Please use following code to hide the sidebar on the search page – insert the code into the quick css field
#top.search .template-search{
width: 100% !important;
}
#top.search .sidebar{
display: none !important;
}
Best regards,
Peter
Hey!
Add this on Quick CSS:
.author-extra-border {
width: 100%;
}
.search .content.template-search {
border: none;
}
Best regards,
Ismael
Thanks Ismael, that worked!