Hello,
I am using the small fixed header.
I’d like to be able to have the header white space across the top so that I can add some text to the right side. The text could also be in a header image that spans the top.
Any input would be great.
Thanks,
W
Hey!
Thank you for using the theme. I hope you’re doing well today.
This will get you started. For further modifications, please visit Werkpress.
You can add this on you custom.css or Quick CSS:
#header_main .container {
height: 200px;
line-height: 200px;
}
.main_menu {
top: 50px;
}
.header_color .main_menu ul:first-child >li > ul, #top .header_color .avia_mega_div > .sub-menu {
margin-top: -50px;
}
.avia-menu-fx {
bottom: 48px;
}
.header-tagline {
float: right;
}
.header-scrolled .main_menu {
margin-top: -20px;
}
.header_color.header-scrolled .main_menu ul:first-child >li > ul, #top .header_color.header-scrolled .avia_mega_div > .sub-menu {
margin-top: -30px;
}
.header-scrolled .avia-menu-fx {
bottom: 28px;
}
Edit header.php, find this code 154:
echo avia_logo(AVIA_BASE_URL.'images/layout/logo.png', false, 'strong');
Below, add the tagline:
echo "<div class='header-tagline'>TAGLINE HERE</div>";
Add this on Quick CSS again:
.header-tagline {
float: right;
}
Regards,
Ismael