Layout change

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"
Post Reply
overcome
Forum Members
Forum Members
Posts: 13
Joined: Sun Nov 07, 2010 3:08 pm

Layout change

Post 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,?????
tilde
Forum Members
Forum Members
Posts: 105
Joined: Tue Mar 09, 2010 7:05 am

Re: Layout change

Post 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
overcome
Forum Members
Forum Members
Posts: 13
Joined: Sun Nov 07, 2010 3:08 pm

Re: Layout change

Post 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?
User avatar
Dr.CSS
Moderator
Moderator
Posts: 12711
Joined: Thu Mar 09, 2006 5:32 am

Re: Layout change

Post by Dr.CSS »

You may want to read very slowly thru the whole template very carefully, you'll find it...
Post Reply

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