Hi
I made my own theme as a fork of Lavender. To be able to have different "container" content classes on different pages, I moved the two following lines from the end of header.tpl
to home.tpl
, category.tpl
and topic.tpl
.
<div class="container" id="content">
<!-- IMPORT partials/noscript/warning.tpl -->
Now, in home.tpl
only I replaced container
by container-fluid
.
My problem is that When I'm in browsing from a topic or a category to home (hitting the Home item in the breadcrumb), the layout doesn't change, and I see the home page with container
instead of container-fluid
.
What should I do? Would separating the #content.container
div into 2 levels of divs (#content
containing container
) work?