Need to remove header image frm all pages except home page in academica theme
The blog I need help with is dhasgraminvikaskendra.com.
WordPress.com is an easy way to start blogging. Get a blog, check out our features, read the latest announcements, choose from great themes, or learn about the team behind it.
Need help? Check out our Support site, then
Need to remove header image frm all pages except home page in academica theme
The blog I need help with is dhasgraminvikaskendra.com.
To hide the header image on all pages except the home page, I'd suggest hiding it everywhere with one rule and then adding a second rule specifically for the home page to add it back. Here is an example that will work in the Academica theme. It appears you have already figured this out by using the following custom CSS:
#slider-wrap {
display: none;
}
.home #slider-wrap {
display: block;
}
Nice work!
I noticed you have an error in your CSS. You should change this:
text-transform: WP Title case;
to this:
text-transform: capitalize;
This topic has been closed to new replies.