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

    Hello,
    thanks to your support in this ticket https://kriesi.at/support/topic/div-title-height-and-colour/

    we have extended the header to full width with

    #header .container {
    max-width:100% !important;
    padding:0 !important;
    }

    but I would like to keep the mega menu to his normal size. How to do that?

    Thank you Mauro

    #794068

    Hey profumopuntoit,

    Could you please give us a link to your website, we need more context to be able to help you.

    Best regards,
    Victoria

    #794076

    Here it is
    https://goo.gl/UqPO3O
    Thank you

    #794399

    Hi,

    you can make your mega menu smaller using this code inside Quick CSS field:

    .avia_mega_div {
    width: 795% !important;
    right: -113px !important;
    }

    Adjust as needed.

    Best regards,
    Andy

    #794805

    Hello,
    I made several test with different width and right values but like this it is depending from browser window width
    My monitor is 1600px wide, I can adjust it to look correctly on it, but if I shrink the browser window it will not look centered.
    There is a way to center it left and right?
    Thank you
    Mauro

    #796369

    Hi,

    Please use css media queries to adjust the width or position on different screen sizes. Example:

    @media only screen and (max-width: 1024px) {
      /* Add your Mobile Styles here */
      .avia_mega_div {
         right: -200px !important;
       }
    }

    // https://css-tricks.com/snippets/css/media-queries-for-standard-devices/

    Best regards,
    Ismael

    #796669

    Sorry maybe I haven’t expressed myself clearly
    I would like that menu remain centered with same left and right margin
    Our megamenu is not looking centered within the same max-width
    Like this can be centered for a specific pixel width only
    Please watch this two video to see what I mean
    Our site: https://www.screencast.com/t/5uGrlNbI6a
    Yor demo: https://www.screencast.com/t/6EqzrmJpRN

    Thank you
    Mauro

    #797353

    Hi,

    I’m not sure why but I can’t play the video. Please provide a screenshot.

    I would like that menu remain centered with same left and right margin

    Did you try the css code above? It will adjust the position of the mega menu on certain screen size.

    @media only screen and (min-width: 1024px) {
      /* Add your Mobile Styles here */
      .avia_mega_div {
         right: -200px !important;
         width: 100% !important;
       }
    }

    Best regards,
    Ismael

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