My site http://humanhighlights.com is using all the latest Drupal 7.4 and Mix and Match 7.x-1.x-dev (2011-Feb-24)
except Skinr which I am using Skinr 7.x-2.x-dev (2011-Mar-04) - Can't seem to get past that every time I try to
upgrade to the latest it breaks my site until I put the older version back -

Anyways, check out my site - for some reason the icon for the search block is clear up on the top -
I've tried changing the location but the icon never goes where it is supposed to -

Any ideas? Many thanks!
Mike

Comments

carnevaledesign’s picture

Your site (humanhights.com) is not coming up on my end. Is this the actual url?

oregonwebsiteservices’s picture

Thanks for looking - sorry for the typo the site is http://humanhighlights.com - I just notice that the icon appears properly with IE8 but the new IE9 is making the icon appear at the very top of the page - It is also broken with Mozilla 3.6.6 and and Safari 5.0.5

mcfilms’s picture

In mix-and-match.css try commenting out the line:
position: absolute;
inside
.block-search form input.form-submit (somewhere after line 137)

A list of some of the Drupal sites I have designed and/or developed can be viewed at motioncity.com

carnevaledesign’s picture

Set the position for #block-search-form to relative:

#block-search-form {
  position: relative;
}

This should confine the #edit-submit element to the #block-search-form div.

Edit: I did this using Firebug and it worked. Good luck!

oregonwebsiteservices’s picture

Many thanks!