Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #1474324

    I have a site at peter-test4.co.uk I am trying to centrally align the menu above the featured images on each page. Can you please help see http://www.peter-test4.co.uk.

    Many thanks and happy new year

    Pete

    • This topic was modified 15 hours, 52 minutes ago by condonp.
    • This topic was modified 15 hours, 52 minutes ago by condonp.
    #1474327

    give this a try:

    @media only screen and (min-width: 990px) { 
      .html_header_top.html_logo_center #top #header_main_alternate .main_menu {
        width: 100%
      }
    
      .html_header_top.html_logo_center #header_main_alternate .main_menu #avia-menu {
        display: flex !important;
        flex-flow: row nowrap;
        justify-content: space-evenly;
      }
    
      .html_header_top.html_logo_center #header_main_alternate .main_menu  .av-main-nav > li > a {
        padding: 0 !important;
        font-size: 19px !important;
      }
    }

    i guess you will set the header widget to display none on small screens

    @media only screen and (max-width: 989px) { 
      #header .widget {
        display: none;
      }
    }

    by the way: is it intentional that the container width is set to 1130px ?

    #1474332

    Hi,

    The link you posted is not working, please check.

    Best regards,
    Rikard

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