Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS How to move template section to header Reply To: How to move template section to header

#191474
Paulie_D
Member

CSS can’t restructure HTML…only style it.

If you want the banner section in the header code your HTML that way.

<!-- Header -->
<header id="header">

    <nav id="nav">        

            ..some elements..

    </nav>

<!-- Banner -->
<section id="banner">
    ..language selection..
</section>

</header>