What is the Color and Hover Color of the Categories in the Side Widget

Discussion in 'Andrina WordPress Theme' started by sandymcdonald, Jun 4, 2013.

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

    sandymcdonald Member

    Joined:
    May 29, 2013
    Messages:
    100
    Likes Received:
    1
    Can you please tell me where to find the text color and hover color of the categories displayed in the category side widget?

    I searched the style.css file and am not seeing the reference.
     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,
    You can paste the following code in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)
    Code:
    .sidebar h4 {
    color: red;
    }
    .sidebar h4:hover  {
    color: green;
    }
    .sidebar li.cat-item a {
    color: #687a07;
    }
    .sidebar li.cat-item a:hover {
    color: #8fcb08;
    }
    You can put your color or color code in the above given code.
    This will solve your issue.
     
  3. sandymcdonald

    sandymcdonald Member

    Joined:
    May 29, 2013
    Messages:
    100
    Likes Received:
    1
    Actually, I don't want to change the color of the h4 (side widget titles). I just want to know the color of the category items that are listed when using the Andrina category widget so that I can color coordinate the color of h1, h2, etc. on my pages. The color you provided above is the color I was looking for is color: #687a07;

    Thank you.
     
  4. Nitesh

    Nitesh Support Staff

    Joined:
    Oct 19, 2012
    Messages:
    5,165
    Likes Received:
    160
    Hello,

    Category items color depends on theme color.
    You can use Google chrome add-on "Eye Dropper". Install it through Chrome store.
     
  5. sandymcdonald

    sandymcdonald Member

    Joined:
    May 29, 2013
    Messages:
    100
    Likes Received:
    1
    Nice. Thank you.
     
Thread Status:
Not open for further replies.

Share This Page