Hello,
I would like to know how can I have the titles out of the picture and have it on the article itself.
Here is my website that is not finished yet: http://www.blocktradingeurope.com/newsite/
Thank you in advance.
// NSP suffix showcase
jQuery('.showcase').each(function(i, wrapper) {
wrapper = jQuery(wrapper);
if(wrapper.find('.nspImageWrapper').length > 0 && wrapper.find('.nspHeader').length > 0) {
wrapper.find('.nspArt').each(function(i, art) {
jQuery(art).find('.nspImageWrapper').append(jQuery(art).find('.nspHeader'));
});
}
});