Need navigation menu text to be red

Discussion in 'RoadFighter WordPress Theme' started by v4sb, Jul 21, 2015.

  1. v4sb

    v4sb Member

    Joined:
    Mar 14, 2013
    Messages:
    341
    Likes Received:
    0
    Would like the navigation menu text to be red
     
  2. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi,

    For your information, we are using cufon.js in RoadFighter theme which convert text into images.
    So, first you have to disable cufon.js.

    Please follow the screenshot given below to disable it.
    roadfighter_cufon_disable.png

    Now, paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    #menu .ddsmoothmenu li a {
      color: red;
    }
    Thanks,
    Praveen
     
  3. v4sb

    v4sb Member

    Joined:
    Mar 14, 2013
    Messages:
    341
    Likes Received:
    0
    Thank you. That worked except that I would like whatever the current page is to be yellow in color while the rest are red.
     
  4. praveen

    praveen Support Staff

    Joined:
    Jan 1, 2015
    Messages:
    2,344
    Likes Received:
    67
    Hi,

    Please paste the code given below in Custom CSS section
    (Appearance -> Theme Options -> Styling Options -> Custom CSS) of your dashboard.
    Code:
    #menu li.current-menu-item a, 
    #menu li.current-menu-parent a, 
    #menu li.current_page_parent a, 
    #menu li a.selected {
      color: yellow;
    }
    Thanks,
    Praveen
     

Share This Page