Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #804967

    Hi,

    I would like to use the following to move the logo to the right:

    .av-logo-container {
        width: 1310px !important;
       max-width: 1310px !important;
    }

    However, now the mobile menu disappears. How can I move the logo to the right without affecting the mobile menu?

    #805485

    Hey FlatText,

    Can you give us a link to your site? so we can take a closer look.

    Best regards,
    Nikko

    #805529

    Hi Nikko,

    Link in private content.

    I’ve done it like this now, which might be a temporary solution:

    .av-logo-container {
        width: 1310px!important;
       max-width: 1310px;
    }
    @media only screen and (max-width: 767px) {
      .av-logo-container {
             width: auto;
             max-width: auto;
          }
    }
    #805964

    Hi,

    Thanks for sharing that, does the CSS work as you intended? If so I would recommend that you go for that solution.

    Best regards,
    Rikard

    #806316

    Hi Rikard,

    Yes it works. One more question, what’s the best way to bring the top-right ‘Login | Register’ links closer to the left?

    #806401

    Hi,
    Try this code in the General Styling > Quick CSS field:

    #top .sub_menu>ul { margin-right: 100px !important; }

    Adjust as needed :)

    Best regards,
    Mike

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