I've created a Zen sub-theme and would like to place a carousel to the right of my logo in the header block.

Initially, I made the header-blocks division an inline-block:

#header-blocks /* Wrapper for any blocks placed in the header region */
{
    display:inline-block;
}

This seems to work well for Opera/FF/Chrome/IE8 but not IE7.

What is the best approach here? Should I be modifying the page.tpl.php file as suggested elsewhere? Is there a work-around for IE7 for inline-block that is compatible with Zen?

Any suggestions would be appreciated.

Comments

eft’s picture

I used the following to float my carousel next to my logo

  #header-blocks
  {
    clear: none;
    float:left;
  }
akalata’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.