
Originally Posted by
clydejones
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">
Bookmarks