Changing colors in CSS editor not working
-
My blog is https://regularlee.com using the theme Apostrophe 2, and I am trying to change the colors of the blog title (Regularlee), the menu titles and hover colors, the post/feature post title colors both on home page and their post pages, and the date ribbon that shows up over the post image.
So far, I was able to change the site tagline color through this code, but I’m not familiar with CSS and don’t know what’s wrong.
.site-description {
color: #3e4e4e;
}Additionally, I changed the colors below.
a {
color: #3e4e4e;
transition: 100ms all ease-in;
}a:hover,
a:focus,
a:active {
color: #3e4e4e;
}.main-navigation a {
border-top: solid 4px transparent;
color: #3e4e4e;.main-navigation a:hover {
color: #3e4e4e;
}.site-title a,
.site-description a {
color: #3e4e4e;
text-decoration: none;
}.site-title a:hover,
.site-description a:hover {
color: #6d8989;
}Thanks in advance.
The blog I need help with is: (visible only to logged in users)
-
Hi there,
The closing bracket is missing for “.main-navigation a {“.
Hope this helps.
Thanks.
-
No, the original code has that.
Just wanted to also note all I did was go into these parts to change the hex color code. I didn’t add in my own code or change anything else. Just the colors.
-
- The topic ‘Changing colors in CSS editor not working’ is closed to new replies.