Tag: wrapping

Dynamic Image/Text Wrapping

Update 01/02/2010: In hindsight I should have just used JQuery to check that the page had been loaded, e.g:

$(document).ready(function(){
$(‘img.wrap’).each(function() {
var img_width = $(this).attr(‘width’);
if(img_width>=375) {
$(‘#content’).style.clear=’left’;
}
});
})

A couple of months ago I encountered an issue with one of the sites I was developing, www.howdenparkcentre.co.uk. The basic page template for the main content area [...]