Hello all,
What I’d like to do is update the css for all links in my theme (DW Minion) so they stand out more. I figured out how to do this just fine but I noticed that the site title and the navigation menu also are affected by my change (they are currently a shade of blue). I would like for the site title and navigation menu to keep their default styling but I can’t figure out where to make the change. Any help is much appreciated.
Thanks again!
ps.
thelisthero.com is the website
1 Answers
You can open the main.css file in the wp-content\themes\dw-minion\assets\css
folder. then find the following code in the line 1888 and change the color #3498db
with "#333"
a {
color: #3498db;
text-decoration: none;
-webkit-transition: all 0.3s;
-moz-transition: all 0.3s;
-o-transition: all 0.3s;
transition: all 0.3s;
}
Hope this helps !
Please login or Register to submit your answer