Page 1 of 1

Layout change

Posted: Mon Dec 13, 2010 6:13 am
by overcome
Hello,
I,m running CMS Made simple 1.9, tamplate  (ShadowMenu Tab + 2 columns)
How will i  remove from the pages  the directions that says
Previous page: 
Next page:
You are here,?????

Re: Layout change

Posted: Mon Dec 13, 2010 7:05 am
by tilde
Find this code in your template:
{* Start relational links *}
{* note this is the right side, when you float: divs you need to have float: right; divs first *}
           
              {anchor anchor='main' text='^ Top'}
           
           
              {cms_selflink dir="previous" label="Previous page: "}
{* The label parameter doesn't need to be there if you're using English, but is here to show how it's used if you don't want the English text "Previous page" *}

             

              {cms_selflink dir="next"}
             
           
{* End relational links *}
Change it to this code:
{* Start relational links *}
{* note this is the right side, when you float: divs you need to have float: right; divs first *}
           
              {anchor anchor='main' text='^ Top'}
           
           
              {cms_selflink dir="previous" label="Previous page: "}
{* The label parameter doesn't need to be there if you're using English, but is here to show how it's used if you don't want the English text "Previous page" *}

             

              {cms_selflink dir="next"}
             
            -->
{* End relational links *}


Søren

Re: Layout change

Posted: Tue Dec 14, 2010 6:42 am
by overcome
The code works perfectly ,
removed Previous page: and Next page:

How will i remove the (You are here:) at the top left, just below the menus?

Re: Layout change

Posted: Tue Dec 14, 2010 6:53 am
by Dr.CSS
You may want to read very slowly thru the whole template very carefully, you'll find it...