Question: How much customization are we looking at to obtain something like this?
Am we better off starting from scratch with more flexibility? As opposed to manipulating your code? Trying to avid that…since the client is on a limited budget.
Please see screenshot.
Thank you,
Justin
Hey Justin!
Do you have a testing site? If so, please post the link to your website? Please make sure to use header with “Logo center, menu below” option
Cheers!
Yigit
Hi!
There is a way to do that, try putting the logo as another menu item, in the center (put the <img>
tag as the label) and remove the default logo with CSS:
#header_main > .container {
display: none;
}
Regards,
Josue
Hey!
I was referring to the <img>
tag (forgot to wrap it as code), anyways the idea is something like this:
http://screencast.com/t/644gZbakEIr
Regards,
Josue
Hey!
1. Change the hiding header code to only get applied on desktop:
@media only screen and (min-width: 767px) {
#header_main > .container {
display: none;
}
}
2. Set “noMobile” class to the logo menu item so it doesn’t get included in the mobile menu.
Best regards,
Josue