• Resolved armadillolighting

    (@armadillolighting)


    Hello, i have googled with no luck. I am trying to change the colour of the menu text, but by skin. As i have some images on some pages that go behind the menu, i need to have light skin as white, and dark skin as black text. How do i go about doing this?

Viewing 1 replies (of 1 total)
  • Jason King

    (@jasoncharlesstuartking)

    First, learn to use the Inspect Element feature in whatever browser you have – it’s incredibly useful. You can use it to find out the CSS ID of your navigation menu items.

    For example on your website the Application Areas > Interior menu item has this ID: #nav-menu-item-14941.

    Then you could add some CSS. For example:

    li#nav-menu-item-14941 a {
    color: whatever;
    }

    There are other ways to do it, for example https://css-tricks.com/snippets/css/style-links-depending-on-destination/

Viewing 1 replies (of 1 total)
  • The topic ‘Changing menu text colours by skin type’ is closed to new replies.