Font

Discussion in 'Real Photography WordPress Theme' started by faizalproperty, Mar 2, 2013.

  1. faizalproperty

    faizalproperty New Member

    Joined:
    Mar 2, 2013
    Messages:
    7
    Likes Received:
    0
    Hi,

    When i hover over the fonts on the main page it turns to red. Can I change this to other color. And the drop down button box is also red. Can i change this?
     
  2. Gourav

    Gourav Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    7,728
    Likes Received:
    207
    Please explain your problem with the help of screenshot, where you want to change the color, so that we can give you the exact solution.
     
  3. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Paste the following code in your custom css
    Appearance -> Theme Options -> Styling Options -> Custom CSS
    Code:
    #menu li.current_page_item a, #menu a:hover {
    color:blue;
    }
    .footer-bottom a:hover {
    color: blue ! important;
    }
    this will solve your issue.
     
  4. faizalproperty

    faizalproperty New Member

    Joined:
    Mar 2, 2013
    Messages:
    7
    Likes Received:
    0
    Hi Piyush, yes that settle part of my problem. Tks!

    I have attached a screenshot to show you the red font and when you have a drop down button, there's a red line. Can i change the color? Tks!
     

    Attached Files:

  5. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Paste the following code in your custom css
    Appearance -> Theme Options -> Styling Options -> Custom CSS
    Code:
    #menu li a.selected {
    color: blue;
    }
    #menu .ddsmoothmenu li ul {
    border-top: 3px solid blue;
    }
    #menu .ddsmoothmenu li li a.selected, #menu .ddsmoothmenu li li a:hover {
    color: blue;
    }
    This will solve your issue.
     

Share This Page