<em>@rodolfo 113902 wrote:</em><blockquote>I ‘am using vauxite and Joomla 1.5.9 for my website. Now I try to format the image caption that I get when inserting an image to an article to the left. I already tried the .caption class in template.css but I can only change image attributes like border, padding, etc. but nothing to change the alignment of the caption. How can I do that? I will appreciate any help.</blockquote>
Hi there. I’ve been searching for this answer too. Anyway, I found out that you can change the alignment for the caption is at template/system/css under the general.css
Change the text-align from center to either left or right to your liking. As shown as below.. Hope this would help 😉
.img_caption.left p {
clear: left;
text-align: left;
}
.img_caption.right p {
clear: right;
text-align: left;
}