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
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.