Changing menu text color etc

Discussion in 'RoadFighter WordPress Theme' started by liftedplane, Oct 16, 2013.

Thread Status:
Not open for further replies.
  1. liftedplane

    liftedplane New Member

    Joined:
    Jul 16, 2013
    Messages:
    23
    Likes Received:
    0
    Location:
    Washington State
    I've been reading other posts and I've managed to get my menu background invisible but now I'm left with a floating... shadow thing

    1. how can I remove this

    2. how can I change the color of the menu text

    my page is www.caringconceptsltd.com

    thank you
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Hello,

    1.For your first issue

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .menu-wrapper {
    -moz-box-shadow:none;
    -webkit-box-shadow:none;
    box-shadow: none;
    }
    2.For your second issue

    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
     
    #menu .ddsmoothmenu li a{
    color:blue;
    }
     
  3. liftedplane

    liftedplane New Member

    Joined:
    Jul 16, 2013
    Messages:
    23
    Likes Received:
    0
    Location:
    Washington State
    it worked for the color I had to add it under the #menu .ddsmoothmenu li a{ that I already had there but it worked.. I cannot get the wrapper to go away though

    here's what my current
    Appearance > Theme Option > Styling Option > Custom CSS
    looks like

    Code:
    #menu .ddsmoothmenu li a{
    font-weight:bolder;
    font-family:Arial;
    }
    #menu ul.ddsmoothmenu {
    text-align: center;
    }
    #menu .ddsmoothmenu li {
    float: none;
    }
    #menu .ddsmoothmenu li a{
    float: none;
    color:red;
    display: inline-block;
    }
    .menu-wrapper {
    background: none;
    border: none;
    .menu-wrapper {
    -moz-box-shadow:none;
    -webkit-box-shadow:none;
    box-shadow: none;
    }
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    We have checked your website and found that you have done some mistake while putting the code in custom css of your dashboard.

    Go to the Appearance > Theme Option > Styling Option > Custom CSS and
    follow the instruction as shown in the image given below.

    [​IMG]


    This will solve your issue.
     
  5. liftedplane

    liftedplane New Member

    Joined:
    Jul 16, 2013
    Messages:
    23
    Likes Received:
    0
    Location:
    Washington State
    perfect problem solved, thank you for the help
     
Thread Status:
Not open for further replies.

Share This Page