I've only 3 teams members, how I can eliminate Team D Member? Is there any special character to not display a team member o a customer logo, if only i want display 5 customers logos and not 15?
Hello, Paste this code in Custom CSS Appearance > Theme Option > Styling Option > Custom CSS Code: .team-content .team-item.last { display: none; } Thanks & Regards Gourav Shrivastava
Your answer works fine, but where I can found on the documentation this kind of information. I don't want change your php code to do simple things, as hide for example the logos of clients from client 5 to client 10. Please do a simple guide of this kinds of information. How can I hidde the logos from client 5 to client 10 on section 6?
Hello, We are going to release theme update this week. With on/off option for each sections on the home page. And some changes in the "customers logos" section. So that you can add logos less then 15 too. Thanks & Regards Nitesh Raghuwanshi
Just installed the update, it appears you can turn off the section but not say for example you only want one team member or two team members.
Hello, The easiest way to solve your issue is that, go with custom css, which we have already suggested you above. If you want more simplest way to do it, it is not available in this theme and if, you want to add or remove more than existing team boxes, you will have to customize the code. Thanks & Regards Naveen Kolhe Note for Everyone: Please create your separate threads while asking technical issues. Do not post in someone else's thread. Start your own topic. It will easier for us that way to provide you precise and on time support.
Hello sleerts To remove a team boxes you need to add following code to you custom css option. Code: .team-content .team-item { float: none; display: inline-block; } .team-content { text-align: center; } .team-item:nth-child(4) { display: none; } Use child selector to select and hide boxes. Suppose you need to hide 3rd box. Add css like this: Code: .team-item:nth-child(3) { display: none; } and for multiple boxes Code: .team-item:nth-child(2), .team-item:nth-child(3), .team-item:nth-child(4) { display: none; } We have also updated the theme with unlimited team members feature using shortcode. Thanks