Viewing 5 reply threads
You must be logged in to reply to this topic.
Hello,
I want to write a paragraph for each team member on the Our Team page. It only shows a preview of the team member with no button to see full team member.
How can I make the line-spacing for the paragraph smaller so that i can fit more text in?
How can I extend the length of the DIV to also extend more text.|?
I may also want to make the “Name, Title, Text” pushed up closer to the picture
Hello,
1- To have more text for staff description please go to file staff.php and find this line: $output .= '<p>'.codeless_text_limit(get_the_excerpt(), 25).'</p>';
The number 25 is the number of words allowed to show in the small description. Increase it as much as you want, to display more.
2-To push up closer to the picture, the “Name, Title, Text”, add this code into your custom css box:
.single_staff .content { padding: 2px;}
Best regards!
Hello,
You need to increase the height of the content area. Add this code into your custom css box:
.single_staff .content {
height: 270px;
}
Change the height to your need.
Best regards!
You must be logged in to reply to this topic.