I placed the search box and an extra block in the header. In IE they are placed next to each other.

The clear:both doesn't seem to be working in IE. Also the search box is way to long.

FF: how it should look (I suppose).
IE: strange

CommentFileSizeAuthor
ie7.jpg33.01 KBhokumboy
ff.JPG33.3 KBhokumboy

Comments

Jeff Burnz’s picture

Sorry but I don't claim to support IE7, given its virtually a dead browser these days.

If you really want to deal with this yourself there are two ways with this theme:

1. Add an IE7 stylesheet

Add this to template.php at the bottom of pixture_reloaded_preprocess_html()

$ie_files = array(
  'IE 7'     => 'ie-7.css',
);
load_subtheme_ie_styles($ie_files, $theme_name);

Then add the ie-7.css file to pixture_realoaded/css directory.

2. Use a strait CSS override by levearging the conditional classes this theme uses:

.ie7 .block-search .form-text {width: 120px;}

Place this wherever you want, such as in a custom CSS file if you are using one.