Okay
  Public Ticket #2607009
Changing Off Canvas links color on specific page
Closed

Comments

  •  19
    Brian started the conversation

    See the attachment.
    I want the off canvas menu links to match the blue menu button color.
    Can't figure out how to do this with CSS.

    This is what I have now:

    body.page-id-1940 #slide-out-widget-area[class*="slide-out-from-right"] a:hover {
        color: #0e76bb;
    }



    Thank you in advance!

  •  8,849
    Tahir replied

    Hey Brian,
    Please provide the page URL so I may write up the custom CSS for this request.

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    body.page-id-1940 #slide-out-widget-area[class*="slide-out-from-right"] a:hover {
        color: #0e76bb !important;
    }

    Thanks



    ThemeNectar Support Team 

  •  19
    Brian replied

    Thank you this worked. Can I change the underline color as well?

  •  19
    Brian replied

    Never mind. This worked:

    body.page-id-1940 #slide-out-widget-area[class*="slide-out-from-right"] li a:after {
        border-color: #0e76bb !important;
    }