Remove filter/transparency on site title
- The topic ‘Remove filter/transparency on site title’ is closed to new replies.
Need help? Check out our Support site, then
I want the site title to be the same colour as the other titles, but there seems to be some sort of filter/transparency on the site title making it appear lighter and I can’t seem to find how to remove it.
The blog I need help with is: (visible only to logged in users)
Hi there,
You can remove the shadow on the site title with the following CSS:
#header .site-title {
text-shadow: none;
}
Add this to CSS in the customizer as provided. Let me know if you run into any issues.
Thanks!
Rebecca
Hi,
I just tried this and it removed the shadow but the font still appears lighter than the other titles
Oh, I see! It’s a different color code. Try this:
#header h1.site-title a {
color: #d80770;
}
That should make it match the smaller page titles.
Thanks!
Rebecca