Removing Site Title
-
Hi there! Is there a way to only have the Site Title show on the main page and not the other pages of the site?
This is the site:
https://mjsalonblog.wordpress.com/
Thanks in advance!
The blog I need help with is: (visible only to logged in users)
-
We can do that. What we have to do is to hide it on all static pages and the bring it back on the home page.
.page .site-title { display: none; } .home .site-title { display: block; } -
Thank you! I have one more question, if you would be able to help. I enabled a full-width background image for the home page and it must have overwrote the code for the other pages. I would like the background image to only show on the home page, not the additional pages. Is there a way to do that? Thanks in advance!
-
Hi, add the following to the bottom of your custom CSS. It appears to work and keep the background image on only your home page
body.background-cover:not(.home) .obsidian-background-overlay { background: none !important; }
- The topic ‘Removing Site Title’ is closed to new replies.