Archived topic
Hook After Header
3 replies · Started by Daniel on May 4, 2015
Hello Tom,
I tried to insert a breadcrumb navigation in my page. I inserted it as a shortcode in the hokk "After Header". It works, but the content starts on the left side of the screen and not inside the page?
See it here: http://unser-quartier.de/mitte/
When I add this in the content it's ok, but not on the Homepage with sections.
Any idea?
Best wishes
Daniel
You need to add it inside a container.
For example:
<div class="grid-container grid-parent">
<div class="breadcrumb-info">
Breadcrumb code in here
</div>
</div>
Then you can add some CSS to the element to stylize it as you like:
.breadcrumb-info {
background: #FFF;
padding: 10px;
}
Hope this helps :)
Thank you tom. That works.
You're welcome :)