Tagged: 

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

    Hi, below is the site link in private section. when you visit that link the menus hover effect is invisible, and active is invisible, can you guys give me a css fix to get it to the color I chose for hover and active (clicked).

    #934530

    Hey 666666,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child theme’s style.css file:

    
    #avia-menu .current_page_item > a > .avia-menu-text, 
    #avia-menu .menu-item:hover > a > .avia-menu-text {
    color:#24f;
    }
    
    #top .current-menu-item .avia-menu-text,
    #top .current_page_item .avia-menu-text {
    color:#24f;
    }
    

    Best regards,
    Vinay

    #934736

    Thanks Vinay :)

    #934761

    Hi,
    Is there anything else we can assist with on this issue, or shall we close this then?

    Best regards,
    Mike

    #937164

    Yeah the same website squeezes up logo and menu collapsing each other in mobile and tablet devices. Bit of css for this new issue too?

    Thanks for earlier solution, it worked well.

    #937466

    Hi,

    Thanks for the feedback, though I can’t see any overlapping in the header on mobile devices. If you want to activate the burger menu for tablets as well then you can try this in Quick CSS:

    @media only screen and (max-width: 1024px) {
      nav.main_menu {
        display: block !important;
      }
      #avia-menu .menu-item {
        display: none;
      }
      .av-burger-menu-main.menu-item-avia-special {
        display: block;
      }
    }
    

    Best regards,
    Rikard

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