The new Graland theme looks great, but I like to remove the breadcrums bar.

I removed if ($breadcrumb): print $breadcrumb; endif; from the page.tpl.php file and then the breadcrums are not shown anymore....
But a empty bar is still displayed (in which normally the breadcrumbs were displayed).

Any help appreciated.

Comments

ViTok’s picture

You must change the images. I created for you the file -> Download File
Put this base.png in folder: \themes\garland\color and than change to the color you want use in your theme settings.

marceloverdijk’s picture

Thanks!

I was looking in the html & css. Now I understand how this theme works (at least a little bit ;-)

Kind Regards,
Marcel Overdijk

marceloverdijk’s picture

One additional question...

I have added an image to header bar (so parlt also where the breadcrumbs would be shown).

Now the image looks good, expect the place where breadcrums are normally shown. This pieces has some dark gray (color setting) color filled in.... So some part of the header image is not shown.
Any idea how to solve this?

Kind Regards,
Marcel Overdijk

ViTok’s picture

first change the color in "admin/build/themes/settings/garland" than go to "files/color/" and change there the images you want change.

marceloverdijk’s picture

I fixed it using z-index in css:

/* Now we add the backgrounds for the main content shading */
#wrapper #container #center #squeeze {
background: #ffffff url(bg-content.png) repeat-x 50% 0;
position: relative;
z-index: -1;
}

Kind Regards,
Marcel Overdijk

marceloverdijk’s picture

In fact the mentioned code breaks on IE 6. I guess because negative z-index was not supported.

Use the logo-floater to make sure the logo is always on top.

#wrapper #container #header #logo-floater {
position: absolute;
z-index: 1;
}

Setting z-index to 1 works, but you might even set it to 1000 or so.

Kind Regards,
Marcel Overdijk

itchy’s picture

Could you please make this download available again as the link does not seem to work any more.

Thanks

ZaphMann’s picture

Hi - I'm trying this in another theme, it sounds like using another color will only fill the hole vacated by the breadcrumb... how about removing the actual space it used up?

Is that controlled in som java script?
Zaph

ThatPerson’s picture

Find something called <div class="breadcrumb"> or <div id="breadcrumb"> (or something similar). Remove the "breadcrumb" part from the code.

If you know HTML, just remove the tag altogether.