Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
So you want to make the grey whiter?
i want to make the grey color darker so more towards black.. to make it look more visible.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Do you have a section in the dashboard named, “Custom CSS” or “Edit CSS”?
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Install this Custom CSS Manager plugin and use its section of the dashboard to hold this CSS:
#masthead {
opacity: 0.8;
}
#colophon a {
color: #111;
}
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Did you clear your cache?
the header is perfect, is there a way i could do the same for the circles ?
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Okay, add this code:
.hentry.no-thumbnail {
background: #111;
}
did not work, reseted cache
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
You’ve removed a closing curly brace on:
#colophon a {
color: #111;
It should be:
#colophon a {
color: #111;
}
it works , can i do the same for the + sign circle for the widgets
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Please can you first state all of the items you want that colour?
sorry for the confusion and this the last item i want color for.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
Change this:
.hentry.no-thumbnail {
background: #111;
}
To this:
.sidebar-link,
.hentry.no-thumbnail {
background: #111;
}