Page 1 of 1

two questions

Posted: Sun Oct 01, 2006 3:48 pm
by VooZ2
1. How to remove printer icon?
2. How to remove link from logo (header)?

Thanks for help  :-*

Re: two questions

Posted: Sun Oct 01, 2006 5:26 pm
by tsw
in default template

look for

Code: Select all

  <div id="header">
           <h1>{cms_selflink dir="start" text="$sitename"}</h1>
   <hr class="accessibility" />
   </div>
and change it to

Code: Select all

  <div id="header">
           <h1>{$sitename}</h1>
   <hr class="accessibility" />
   </div>
and

Code: Select all

    <div id="main">
         <div style="float: right;">{print showbutton=true script=true}</div>
         <h2>{title}</h2>
and change to

Code: Select all

    <div id="main">
         <h2>{title}</h2>
hope this helps