Collective Theme: Hiding Team Members from Home Page
-
I’m new to CSS but understand that I can hide the “Team Members” section from displaying on my home page.
How can you tell what line of code is associated with this display on your home page in order to apply the Visibility: Hidden commands to that line?
Sorry for such a newbie question. I looked at the HTML and there are so many instances of the word “Team” that I don’t know which <div> tag I need to change. How can you tell?
The blog I need help with is: (visible only to logged in users)
-
BTW, I am using the Developer tools with Safari, and I can highlight the team members — but not sure exactly what line to address.
So I see this below, but where do you put the command to hide this? I’m guessing it starts here?
<!– BEGIN .row –>
<div class=”row team-section”><!– BEGIN .content –>
<div class=”content”><!– BEGIN .featured-team –>
<div class=”featured-team”><h4 class=”headline text-center”>team members</h4>
<!– BEGIN .members –>
<div class=”members”> -
Hi there, I see that you also posted this question in the theme’s own forum – I’ll let the theme developers help you directly there, and close this duplicate:
http://premium-themes.forums.wordpress.com/topic/hiding-team-members-from-home-page
In the meantime, this quick piece of CSS should do the trick:
.home .team-section { display: none; }Learning how to target your site’s CSS will help you make certain design and layout changes. Here are some very helpful posts that will help you customize your site with CSS:
http://en.support.wordpress.com/custom-design/how-to-find-your-themes-css/
If CSS is new to you, here are some resources for learning more about it:
- The topic ‘Collective Theme: Hiding Team Members from Home Page’ is closed to new replies.