I set up my website based on ad blueprint theme for drupal 6.x
Its showing fine in mozilla, and safari,
But in Internet Explorer its showing only half of the site name...

Check it out... here --> http://www.ikireta.com

How do resolve it without changing the theme?

Comments

lonehorseend’s picture

Your problem lies in this conditional statement:

<!--[if IE]>
  <style>#sidebar-right {position:relative;left:-1px;}
  #page2 {border-bottom:2px solid #CCC;}
  .site-name {position:relative;top:-20px;}
  .site-slogan {position:relative;top:-35px;}</style>
  <![endif]-->

It's looking to changes a few styles for IE. If you mean for it to work only on IE 6 or below than you would replace [if IE] with [if lte IE 6]. That's why it's working in Mozilla and safari, they are completely ignoring it.