two questions

For questions and problems with the CMS core. This board is NOT for any 3rd party modules, addons, PHP scripts or anything NOT distributed with the CMS made simple package itself.
Locked
VooZ2

two questions

Post by VooZ2 »

1. How to remove printer icon?
2. How to remove link from logo (header)?

Thanks for help  :-*
tsw
Power Poster
Power Poster
Posts: 1408
Joined: Tue Dec 13, 2005 10:50 pm

Re: two questions

Post 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
Locked

Return to “CMSMS Core”