text on header images
-
Hi, I want text on only one of my pages header images. Is this possible?
The blog I need help with is: (visible only to logged in users)
-
Yes, we can do that. We would have to hide the text on all images and then bring it back on the page where you want it to appear using the page CSS class set in the body selector. I would assume you wish it to appear on the home page, but not on the others. Here would be the code for that.
.site-title a, .site-description { color: rgba(0, 0, 0, 0) !important; } .home .site-title a, .home .site-description { color: #fff !important; }If it’s a different page you are talking about, let me know and I’ll adjust the code.
- The topic ‘text on header images’ is closed to new replies.