Problem with logo not showing in IE

Hi,

I have built a site in wordpress from a template and have made some css adjustments which have resulted in the logo not showing in IE but seems fine in Chrome. If anybody can help with this issue it would be much appreciated.

The site can be found at http://www.xlcreate.co.uk/mehul/

HI,

The problem is that in the html you have set the width and height of the logo image to be a blank space which IE assumes is zero so you get no image.


<img src="http://www.xlcreate.co.uk/mehul/wp-content/uploads/2013/06/site-logo.png" alt="Parklands Dental Care" width="" height="" class="ci-sitelogo" />

Either remove the attributes (width=“” height=“”) or insert their correct values. Browsers still prefer the attributes to be present with their proper values even if you over-ride them with css later.

cheers all sorted now