Removing the Home Breadcrumb

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
Mury
Forum Members
Forum Members
Posts: 56
Joined: Tue Oct 09, 2007 10:54 pm

Removing the Home Breadcrumb

Post by Mury »

Hi Guys - I just dont seem to work it out - I want to remove the "Home" heading on the Home Page.
ie I still need Home in the menus etc - its just that "Home " is not appropriate - how do I turn it off - Im using a heading in my Page ..
Thanks All
Jeff
Power Poster
Power Poster
Posts: 961
Joined: Mon Jan 21, 2008 5:51 pm

Re: Removing the Home Breadcrumb

Post by Jeff »

Look for something like this in your template.

Code: Select all

{* Start Breadcrumbs *}
      <div class="crbk">
{* holds the right image, we need 2 divs to be able to make this site fluid, if it was fixed width we could use one div, one image  *}

        <div class="breadcrumbs">
        {breadcrumbs starttext='You are here' root='Home' delimiter='»'}
          <hr class="accessibility" />
        </div>
      </div>
{* End Breadcrumbs *}
Pierre M.

Re: Removing the Home Breadcrumb

Post by Pierre M. »

BTW notice the use of {* ... *} comments : you can 'comment' something to tune it off without erasing it.
{sometag nomore='wanted'} becomes {* sometag nomore='wanted' *}

Pierre M.
Mury
Forum Members
Forum Members
Posts: 56
Joined: Tue Oct 09, 2007 10:54 pm

Re: Removing the Home Breadcrumb

Post by Mury »

Hi Ajprog & Pierre,
thanks for the hints.  Actually I found it wasnt the breadcrumbs but{title} that was the hassle.  I wanted to optionally have that displayed on the Page.  I did a quick and nasty fix for now & added a {content block="thirdblock} to the page  template and removed {title}.  This way I can use a "custom page title" on each page.  Its clunky but works til I have time to improve it.
Thanks
Post Reply

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