• Resolved arkansasben

    (@arkansasben)


    First, I’ve been extremely happy with this plugin. I even purchased the Pro version and will now start integrating it into ever site I create for clients. I’m very impressed with all of the available options in the Pro version and how easy it is to edit using the Customizer.

    I can’t find in the configuration how to change the hover color of the small hamburger button that launches the menu. Forgive me if I’ve overlooked it.

    Does it inherit the hover color from your site? If so, I’m using a minimal theme with Elementor named Hello. There are few settings and none to set link colors of any sort. However, there is an ‘Additional CSS’ option where I’ve include the code below, which sets the hover color for links all over my site.

    If the hamburger button menu inherits the hover color from my Custom CSS, why isn’t it working? Am I overlooking something obvious or how would you recommend I fix this?

    /* unvisited link */
    a:link {
      color: #5CC4E8;
    }
    
    /* visited link */
    a:visited {
      color: #5CC4E8;
    }
    
    /* mouse over link */
    a:hover {
      color: #5CC4E8;
    }
    
    /* selected link */
    a:active {
      color: #5CC4E8;
    }

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author sevenspark

    (@sevenspark)

    Hi @arkansasben ,

    Great to hear you’re enjoying the plugin!

    On your site, yes, the styles from the theme are setting the toggle button colors.

    The styles you noted above aren’t applied because the toggle is a button, not an anchor.

    If you’d like to style the button, I’d recommend using its ID:

    #shiftnav-toggle-main-button:hover{
    	background:red;
    	color:white;
    }

    Hope that helps! If you have any further questions, please be sure to Submit a Ticket – that is both checked much more frequently, and is also required for Pro support (WordPress only allows us to support the lite version in these forums). Thanks! ??

    Thread Starter arkansasben

    (@arkansasben)

    Perfect. Thank you so much for the prompt reply !!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Toggle Bar Menu Button Hover Color’ is closed to new replies.