Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #390448

    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

    #390625

    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

    #390991
    This reply has been marked as private.
    #391200

    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

    • This reply was modified 9 years, 1 month ago by Josue.
    #391791
    This reply has been marked as private.
    #391819

    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

    #391820
    This reply has been marked as private.
    #391868

    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

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.