Search box image not aligning properly in FF and IE

Anlino

New Member
I am having a problem with a image in my search box on www.filmnyheter.nu in FireFox and Internet Explorer.

In Chrome, Safari and Opera, the magnifying glass on the search box button is displayed properly. However, in FF and IE, half of the magnifying glass is pushed to the right and cannot be seen. I assume that there is some problem with the padding/margin that only shows in those browsers, but I haven't figured out how to fix it.

Any and all help is appreciated!


Anders
 

smoovo

New Member
Change the CSS code,

HTML:
.widget_search button span {
    ....
    padding: 10px 0;
    ....
}

into,

HTML:
.widget_search button span {
    ....
    padding: 10px;
    ....
}

It works great! ;) Enjoy.
 
Top