Hello,
We have upgraded our website from j2.5 to j3.2 .. everything went fine but we had one issue; the caption not showing under images in the articles.
Example:
http://www.kuwaitnews.com/world/intl/58 ... 5-17-45-18
Regards,
Bashar
<script type="text/javascript">(function($) {$(document).ready(function() {
$('.img-fulltext-none img.caption').each(function(){
$(this).append('<h5>'+$(this).attr('title')+'</h5>');
});
});})(jQuery)</script>
<script type="text/javascript">(function($) {$(document).ready(function() {
$('.img-fulltext-none img.caption').each(function(){
$(this).parent().parent().find('div').append('<h5>'+$(this).attr('title')+'</h5>');
});
});})(jQuery)</script>
<script type="text/javascript">(function($) {$(document).ready(function() {
$('.img-fulltext-none img.caption').each(function(){
$(this).parent().parent().find('.img-fulltext-none').append('<h5>'+$(this).attr('title')+'</h5>');
});
});})(jQuery)</script>
.img-fulltext-none h5 {}