Link color in <UL>

Discussion in 'Squirrel WordPress Theme' started by skelleyh, Dec 12, 2013.

  1. skelleyh

    skelleyh New Member

    Joined:
    Nov 26, 2013
    Messages:
    3
    Likes Received:
    0
    I would like the site-wide link color to be #1b8be0, and have added the custom code below to accomplish this:
    a:link,
    a:visited {color: #1b8be0;
    }

    However, the link code in unordered lists is bright blue. What code do I need to add to include links in lists to match #1b8be0? For example, this page shows ULs with the wrong blue:
    http://cravencounseling.com/about/confidentiality/
    Thank you!

    cravencounseling.com
    admin-test
    Training@1

     
  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,
    Paste the following code also in your Custom CSS
    (Appearance -> Theme Options -> Styling Options -> Custom CSS)

    Code:
    .fullwidth ul li a {
    color: #1b8be0;
    }
    In place of "#1b8be0" you can put your color or color code.
    This will solve your issue.
     

Share This Page