Hi,
Is it possible to place content in the middle of the uppermost part of the header, as in this image? http://imageshack.com/a/img208/9081/9x5q.png
Also, is it possible to move the page links on the right, to the “you are here” bar below – also as in the image?
Thanks
Hey 500Webmaster!
This will be easier if you use the header with the bottom navigation. Add this on your custom.css or Quick CSS to move the menu on the title container:
#header_main_alternate {
border: none;
}
.bottom_nav_header.social_header .main_menu {
top: 10px;
}
#header_main_alternate .container {
height: 0;
}
.bottom_nav_header.social_header .main_menu ul:first-child>li:first-child a, .bottom_nav_header.social_header .main_menu ul:first-child>li a {
border: none;
}
.bottom_nav_header.social_header #top .main_menu .menu-item-search-dropdown {
float: left;
}
To add more content on the header section, please edit header.php then find this code:
echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', false, 'strong');
You can add text or image code below.
Regards,
Ismael
Thanks!