The current top and bottom margin is 20px. Try this in your theme’s stylesheet:
.testimonial {
margin 10px auto;
}
Thanks but I guess even the padding for the testimonial box is too much. How do I reduce that ?
I mean after the paragraph is over inside the box there is so much space at the bottom. I guess that is the default padding. How do I reduce that cause that looks like a gap.
The current padding is 20px. Try this:
.testimonial .inner {
padding: 10px;
}
For some reasons the space after the para inside the box remains the same. It is almost about 3 line space.
Thanks
Then you’ve got something else going on. Please post a link to the site so I can take a look.
http://www.letscre8.com.au/ahs/client-testimonials/
The top line in the box has proper padding but once the para is over then there is about 3 line space inside the box. Check and let me know.
Thanks
Try these in your theme’s stylesheet:
/* remove margin from paragraphs in testimonials */
.testimonial .content p {
margin-bottom: 0;
}
/* remove client info from bottom of testimonial */
.testimonial .client {
display: none;
}
Fantastic…..that did the trick…..
Thanks a ton