Color Change
-
Hello everyone
Could you tell me how to change the head color (from black to floralwhite) on the main page?
And also I need to delete the date of publication on the main page as well
Thanks
The blog I need help with is: (visible only to logged in users)
-
Hi there,
1. Could you tell me how to change the head color (from black to floralwhite) on the main page?
Try adding the following css code:
.site-title a, .site-description { color: #FFFAF0; }2. And also I need to delete the date of publication on the main page as well
This will remove the date of publication on all pages:
.entry-date { display: none; }If you want to remove it only on the main page, use the following instead:
.blog .entry-date { display: none; } -
-
- The topic ‘Color Change’ is closed to new replies.