GATEWAY–font color in header
-
hi there!
Can I change the font color in the header of the Gateway theme? I would like it black, not white.
I already have the Premium Plan.
Thanks!The blog I need help with is: (visible only to logged in users)
-
Hi,
This will change only the site title color to black:
.site-title a { color: #000; }Want the site title as well as tagline color changed? Use this code instead:
.site-title a, .site-description { color: #000; } -
-
Hi there, you might want to give this a try. It adds a white text shadow to the site title and tagline, and then on hover over the title (which goes white) it adds a black text shadow. It helps some at least. See what you think.
.site-title a, .site-description { color: #000; text-shadow: 2px 2px 1px #fff; } .site-title a:hover { text-shadow: 2px 2px 1px #000; } -
-
- The topic ‘GATEWAY–font color in header’ is closed to new replies.