Header photo
-
How do I remove the header photo from pages other than the home page?
The blog I need help with is: (visible only to logged in users)
-
Hi there,
You can use Custom CSS (part of your WordPress.com Premium plan) to customize your site’s theme like that. The best place to get advanced CSS help is in our CSS Customization forum, but I can give you some tips to get started here:
If you wanted to remove the header image from all pages on your site using CSS, you could use this:
.header-image { display: none; }To make CSS that’s specific to a particular page on your site, you’ll need to find the page id, which is something like page-id-1. Then, you can add that page id class to your CSS:
.page-id-1 .header-image { display: none; }If you’d like more help learning about CSS classes and how to find those page ids, the experts in the CSS forums can help guide you to the answers you’re looking for. :)
We also have tips and resources for getting started with CSS here:
- The topic ‘Header photo’ is closed to new replies.