Removing Components

For discussion and questions related to CMS Specific templates and stylesheets (CSS), and themes. or layout issues. This is not a place for generic "I don't know CSS issues"
Locked
ensanity

Removing Components

Post by ensanity »

Hey All,

I am brand new to the community, just downloaded and installed the release. I am playing around with it, and read in the documentation that in order to input a component or remove one you just have to add/delete the

  {* Start Search *}
 
          {search1}
 
  {* End Search *}

part of the code. I don't want the search bar or the print option to appear on my page at all, but no matter what I do, whenever I hit "View Site" it is always there! Its haunting me! Haha, Any advice?

Thanks!
cyberman

Re: Removing Components

Post by cyberman »

Welcome here.

Go to Layout > Templates in admin panel, select your template and ...
ensanity wrote: the search bar
... delete this

Code: Select all

   {* Start Search *}
   <div id="search">
          {search}
   </div>
   {* End Search *}
or the print option
... and this

Code: Select all

         <div style="float: right;">{print showbutton=true script=true}</div>
Sometimes it's a good idea to clear cache (admin panel, Site admin > Global settings).
Locked

Return to “Layout and Design (CSS & HTML)”