Adding color to drop down menu titles

Discussion in 'ColorWay WordPress Theme' started by pieceacake, Jan 11, 2013.

  1. pieceacake

    pieceacake New Member

    Joined:
    Jan 4, 2013
    Messages:
    10
    Likes Received:
    0
    I have added pages to the "Package" menu (parent page) and was wondering how I change the font color of these? The main menu was easy to change with the help of another thread but Im having difficulties making the drop down items colored as well. Any help would be greatly appreciated.
    www.pieceacake.ca

    Thanks again
    Dawn
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    #menu .ddsmoothmenu li li a:link, #menu .ddsmoothmenu li li a:visited{
    color:yellow;
    }
    Inplace of "yellow" put your color code.
     
  3. pieceacake

    pieceacake New Member

    Joined:
    Jan 4, 2013
    Messages:
    10
    Likes Received:
    0
    Gourav,

    Thank you very much for the code. Im wondering if there is a way to have the drop down menu highlight the different pages as I roll over them with my mouse? As well the title shows up on the page but still in black. Is there a way to make these titles on each page my specific color.

    www.pieceacake.ca

    The "Packages" menu is the 1 I am having difficulties with.

    Thanks in advance as mentioned earlier you guys are awesome

    Dawn
     
  4. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS


    Code:
    #menu .ddsmoothmenu li li a.selected, #menu .ddsmoothmenu li li a:hover{
    background:green!important;
    }
     
  5. pieceacake

    pieceacake New Member

    Joined:
    Jan 4, 2013
    Messages:
    10
    Likes Received:
    0
    Gourav, The above has solved the highlight issue for the drop down menu but the main problem is the title showing up on the page itself in Black. See below. The Heading showing in black is what I want to put into pink (Ive underlined it). This heading automatically shows up on the page once Ive added a new page to the packages drop down menu. I hope this is more clear. Thanks again in advance I appreciate your hard work.

    Home » Packages » Let Them Eat Cake
    Let Them Eat Cake

    Let Them Eat Cake! (starting at $1400)
    “Let Them Eat Cake” is for the Bride and Groom that want the full DIY wedding experience but want the wedding day fully coordinated by a professional. The “Let Them Eat Cake” package includes but is not limited to:
    • 1 consultation prior to wedding date to discuss details
    • Unlimited communication 1 week prior via email/phone/text
    • Ceremony and Reception site visit (within city limits)
    • “Day Of” timeline and vendor schedule
    • Full Wedding day coordination till cake cutting or 7pm
     
  6. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .content-wrapper h2{
    color:pink;
    }
    #crumbs {
    color: pink;
    }
    #crumbs a{
    color: pink;
    }
     
    pieceacake likes this.
  7. pieceacake

    pieceacake New Member

    Joined:
    Jan 4, 2013
    Messages:
    10
    Likes Received:
    0
    Nitesh thank you so much for the code. I was able to change all my menu titles except for Contact Us.
    www.pieceacake.ca

    Please let me know how H6 can be changed as well.

    Thanks again
    Dawn
     
  8. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Paste this code in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .contact h2 {
    color: pink;
    }
     

Share This Page