Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #439839

    Hi,
    is it possible to have the logo in the center and the menu next to it ( left and right)

    As you can see on the hp i now made a menu point as an image but i do not know if that is the best way to do it. ( Maybe google doesn’t like it..?)

    Thanks Simon

    #440467

    Hey simonac!

    So you added the image as a background of one of your menu items. It looks fine to me. The only problem I see is that it’s not going to be displayed on smartphones. Is that what you were wanting?

    Best regards,
    Elliott

    #440824

    If there is no other way to realize this then i would leave it this way. Of course it has to be displayed on mobiles. Do you have a solution for this?

    If possible i would like to use the real logo and have the menu right and left next to it. Maybe this should be another standard Menu and Logo Position. Is this possible?

    Thanks a lot!

    Simon

    #441023

    Hey!

    Please change following code

    div .logo {
      display: none !important;
    }

    to following one

    @media only screen and (min-width: 769px) {
    div .logo {
      display: none !important;
    }}

    And please feel free to request such header style here – https://kriesi.at/support/enfold-feature-requests/

    Best regards,
    Yigit

    #443098

    Allright, I’ll leave it as it is now.

    On mobile it isn’t in the middle now. How to make it center when the screen is getting smaller?

    Regards, Simon

    #444260

    Hey!

    Please add this:

    @media only screen and (max-width: 767px) {
    .responsive #top .logo {
      width: 100%;
    }
    
    .responsive .logo img {
      display: inline-block;
    }
    
    .responsive .logo a {
      text-align: center;
    }}

    Cheers!
    Ismael

    #444538

    Seems to work! Thanks!

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Logo center menu right and left’ is closed to new replies.