Hello!

I am very new so still learning.

I am using a three column layout. The breadcrumb vocab is in the top of the main section which is fine, it can stay there.

I have a h1 title at the top of the main section, I am trying to add a border around the main section in my css that excludes the breadcrumb. So the border starts at the title not the breadcrumb.

Here is a link to the site www.purestock.tv

and a page were you can see the breadcrumb purestock.tv/contact

Many thanks!

Comments

www.richardsprojects.co.uk’s picture

You won't be able to do this just in your CSS. You will need to add some more HTML to your template that you can style.

In page.tpl.php you will need to add an extra div tag:

// The breadcrumb bit
<div class="nice_name">
// Bit you want border round
</div>

Then in you style sheet

div.nice_name {
  border: 1px solid orange;
}

Hope that helps.

Richard Garside
www.richardsprojects.co.uk

michellepurestock’s picture

Thanks! Sent me down the right path. All is well.
michelle