GazCBG

Registered
Hi,

I have setup some pages and I would like to remvoe/hide the quick search box on those pages only, how would I do that?
 
You can use a CSS selector to hide it.

Code:
.forum_list #QuickSearch { display: none !important; }

Would hide it on the forum list...

or replace .forum_list with a node: .node14

Which would hide it on anything inside of node #14. To get the class you need to inspect the page, like this thread view page you can find it next to the div id="content":

Code:
<div id="content" class="thread_view">
 

Pre-Sale Questions

If you have any questions or concerns you want to ask before you make a purchase don't hesitate to use one of our multiple support channels for your convenience.

Back