Changing Menu Text Colour on Truly Minimal

  • Unknown's avatar

    Hi I am fairly new to wordpress and css customisation *blushes* and I was wondering if anyone knew how to change the text colour of the navigation menu on the truly minimal theme to black. This includes a drop down menu as well if that makes any difference.

    The blog I need help with is
    thebeautyark.com

    cheers,

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Go to Appearance > Customize > CSS and copy the code below into the text area, you can delete the example stuff that’s in there to start with.

    The first bit will change the menu link colours to black, the second bit will change the hover colours – so people can tell which item their mouse is over when using the menu. Feel free to include or remove it as you see fit.

    If you have any more questions then feel free to ask away.

    .navigation-main a,
    .navigation-main a:visited,
    .navigation-main ul ul a,
    .navigation-main ul ul a:visited {
      color:#000;
    }
    
    .navigation-main ul ul li:hover > a,
    .navigation-main li:hover > a {
      color:#6C6E6E;
    }
  • Unknown's avatar

    you are an absolute champion! thank you so much
    xx

  • The topic ‘Changing Menu Text Colour on Truly Minimal’ is closed to new replies.