Jump to content
Sign in to follow this  
nestorlld

How to make header image not appear on my entry index page with platform pro

Recommended Posts

nestorlld

HI all, I'm trying to delete the header custom image and social icons (everything above the horizontal nav bar) from the entry index page which has the page features area (my site is www.child-psych.org). I want the header image/social icons to show up only inside the single post pages, pages, and search results but NOT in the main index page. Is this possible? Thank you for your help. Nestor.

Share this post


Link to post
Share on other sites
Kate

Hi Nestor, If you don't mind them still loading, you can just use "display:none" on those elements with CSS.

Share this post


Link to post
Share on other sites
nestorlld

Hi kate, thanks for the email. could you tell me more about how this would work? I don't mind them loading, but would this mean there will be white space there? and how do I get the css to only apply to the entry page? thanks. N.

Share this post


Link to post
Share on other sites
Kate

Hi Nestor, Your home page has a class of ".home", and the blog page of ".blog". So, you can use either one of those to specify the elements. And, there won't be a white space... they'll literally be "hidden". So, for instance:

.home .icons{display:none;}
or the entire header:
.home #header{display:none;}

Share this post


Link to post
Share on other sites
nestorlld

Thanks so much Kate. We are almost there. This worked as you suggested, the problem is that it also deleted the navigation bar that is placed below the header image. The ideal scenario would be to hide only the image and the icons, and but keep the nav bar. Is this possible?

Share this post


Link to post
Share on other sites
Rob

It should be. I'll bump this back to Kate for further attention.


Former PageLines Moderator, Food Expert and Raconteur

Share this post


Link to post
Share on other sites
poseyg
Nestor, These will remove the image, icons and search...you will have to add the page-id in front of these: #branding .branding_wrap { display: none; position: relative; } and to get rid of the search form: .searchform { display: none; margin: 3px auto 0; position: relative; width: 210px; }

Share this post


Link to post
Share on other sites
Danny
Hi, Try adding this to your Custom CSS, this will remove the header image and the social icons from your homepage only and will push the navigation menu to the top your page. [code].home #branding { display: none; }[/code]

Please search our forums, before posting!

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×