Quote Originally Posted by clydejones View Post
From what I can see, this declaration is conflicting with the sidebox and the page. I've indicated the change to make in red

From stylesheet.css
#testimonialImage {
margin: 0;
padding: 4px 0 0 0;
text-align: center;
}

Change this as follows:
.testimonialImage {
margin: 0;
padding: 4px 0 0 0;
text-align: center;
}



From testimonials_manager_all_testimonials.css
This one you don't have to change.
#testimonialImage {
margin: 0;
padding: 0 0 10px 0; /* change the 10px to get more spacing*/
text-align: center;
}

The only other change to make is to open
includes/templates/YOUR_TEMPLATE/sideboxes/tpl_testimonials_manager.php

find the following code:
<p id="testimonialImage">

and change it as follows:
<p class="testimonialImage">
Dear Clyde, now I don't need the 10px padding. I have the following code in the two testimonial css files:

#testimonialImage {
margin: 0;
text-align: center;
}

The problem must have been the <p class thing.

Thanks for the help with this.