Tagged: header layout
I’ve been trying to figure out how to get the attached layout for the header
http://easycaptures.com/fs/uploaded/740/8445950145.jpg
I would like the header_meta area to not be full with allowing for the logo to be the height of the combined main menu and header_meta area.
Is there away to accomplish this?
Thank you,
S
Hey msqinc!
Based on your screenshot it looks like your trying to move the main level links down a bit and set the secondary menu position to the top right.
Go ahead and add this to your custom CSS.
.av-main-nav > li > a {
padding-top: 20px !important;
}
And then send us a link to your page and we’ll take a look. You can set your reply as private if you wish.
Regards,
Elliott
Hi!
So on small screens your logo is disappearing correct? Add this.
#header_meta { background: transparent !important; }
That’s still going to look weird though because your header_meta and the logo will be overlapping each other.
Take a screenshot and highlight what your trying to do there so we can get a better idea.
Regards,
Elliott
Hi!
Are you open to the idea of reverting the header styling back to its original state when viewing on smaller screens? You can place the modification inside a media query:
@media only screen and (min-width: 768px) {
#header_meta {
background-color: #ffffff;
border-bottom-style: none;
border-bottom-width: 0;
border-top: medium none;
font-family: "Droid Serif",Georgia,Times,serif;
font-size: 1.1em;
font-weight: normal;
margin-bottom: -1px;
min-height: 30px;
position: absolute;
right: 0;
top: 15px;
z-index: 10;
}
}
Best regards,
Ismael
Brilliant!!!! That works.
Thank you for the change in direction!
Best Regards,
Sandra