XF 1.4 Search bar Off

For some reason, the on my browser looks fine, but apparently, not to others.

Mine:

Screen Shot 2015-07-26 at 4.23.18 PM.webp

Others:

11778902_697647800341411_1829093694_o.webp

Any help? I tried looking at the search_bar.css template, but I'm not sure where the code is for this second image, and how to correct it.

Thanks.
 
Hi,

The width of this breaks the search bar:
Code:
#logo a
{
        width: 1170px;
        height: 145px;
        display: block;
        background: url(/data/images/mcFINAL.png) no-repeat;
        background-position: absolute;
}

This is not coded properly. Remove the width and background from the #logo a and just add the background to #logoBlock.

Result:

Screenshot_1.webp
 
Hi,

The width of this breaks the search bar:
Code:
#logo a
{
        width: 1170px;
        height: 145px;
        display: block;
        background: url(/data/images/mcFINAL.png) no-repeat;
        background-position: absolute;
}

This is not coded properly. Remove the width and background from the #logo a and just add the background to #logoBlock.

Result:

View attachment 112614
Although where exactly do I add what to where within the logo_block template?
 
Top Bottom