Tagged: ,

Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #1468147

    Is there a way we can make the menu items span the whole menu area as shown and add a line underneath (also shown).

    Your help (as always) is appreciated.

    Screenshot-2024-10-01-083758

    #1468153

    Hey whdsolutions,

    Please try the following in Quick CSS under Enfold->General Styling:

    .html_header_top.html_main_nav_header #top .av_menu_left .main_menu, .html_header_top.html_main_nav_header #top .av_menu_left .main_menu .av-main-nav-wrap {
      width: 100%;
    }
    
    #top #header .av-main-nav > li {
      width: 25%;
    }

    Best regards,
    Rikard

    #1468162

    Thank you for that…

    Any news on the other bits as shown here?

    Untitled-1

    #1468236

    Hi,

    Thank you for the update.

    Please try to include this css code to create a border below the menu items:

    #top #avia-menu:after {
        content: "";
        width: 90%;
        height: 2px;
        display: block;
        position: absolute;
        background: white;
        top: 140px;
    }
    
    #top #avia-menu {
        margin-top: -19px;
    }

    Best regards,
    Ismael

    #1468253

    Cheers

    • This reply was modified 1 week, 5 days ago by whdsolutions.
    #1468256

    Doing these changes has messed-up the mobile menu and the line is still showing on mobile – see the image here https://ibb.co/V965Psp

    #1468257

    Also, on the page https://2024-liptonrogers-com.stackstaging.com/projects/ how can we make the whole image be clickable instead of just the text in the portfolio grid?

    #1468325

    Hi,

    Thank you for the update.

    Doing these changes has messed-up the mobile menu and the line is still showing on mobile

    Try to move the css code inside a css media query. Please replace the previous code with this:

    @media only screen and (min-width: 768px) {
    
      /* Add your Desktop Styles here */
      #top #avia-menu:after {
        content: "";
        width: 90%;
        height: 2px;
        display: block;
        position: absolute;
        background: white;
        top: 140px;
      }
    
      #top #avia-menu {
        margin-top: -19px;
      }
    }

    If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.

    Thanks!

    Best regards,
    Ismael

    #1468334

    THank you.

    How to get the burger menu back to the right hand side?

    #1468345

    Hi,

    Please try this CSS as well:

    li.av-burger-menu-main {
      float: right;
    }

    Best regards,
    Rikard

    #1468350

    Any news on:
    Also, on the page https://2024-liptonrogers-com.stackstaging.com/projects/ how can we make the whole image be clickable instead of just the text in the portfolio grid?

    #1468390

    Hi,

    Please start a new thread for any additional questions. Long threads can go off-topic and are harder to support and search. Keeping each thread focused helps everyone find answers more easily.

    Best regards,
    Ismael

    #1468630

    For some reason the mobile burger menu has lowered on the page – how do we get this back to where it’s supposed to be?

    Screenshot-2024-10-08-094430

    #1468637

    Hi,

    The issue with the mobile menu occurs because of this css code:

    #top #header_main > .container, #top #header_main > .container .main_menu .av-main-nav > li > a, #top #header_main #menu-item-shop .cart_dropdown_link {
        line-height: 244px !important;
    }

    Please try wrapping the rule in a css media query so that it only affects the desktop view:

    @media only screen and (min-width: 989px) {
    
      /* Add your Desktop Styles here */
      #top #header_main>.container,
      #top #header_main>.container .main_menu .av-main-nav>li>a,
      #top #header_main #menu-item-shop .cart_dropdown_link {
        line-height: 244px !important;
      }
    }
    

    Best regards,
    Ismael

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