Im a beginner when it comes to building a site. Thats why i choosed to build with WordPress.
The thing is that i got i responsive theme that should work with any browser.
I upload a logo by going to appearance>Customize>upload logo.
With Crome it looks great:
But with firefox, Iphone safari and IE it looks bad:
http://imagizer.imageshack.us/v2/800x600q90/838/8tl2.png
I’ve a Childtheme, and the only code i’ve put in is to get the logo to display a bit more towards the middle:
@import url("../realia/style.css"); .logo-wrapper { position: relative; left: 10%; }
Why is it looking like this, ive tried with .clearfix codes and to change the image height etc.
Have a great day and thank you in advance!
Advertisement
Answer
Just remove the height
from your,
.logo class
Height
is causing issue on Chrome as well, while resizing the window. Image is not able to resize. So, remove the height in px
.
Good luck!