0

I've created a custom Icon-Font for a web-project. It's working perfectly in all desktop Browsers.

But on iPad-Landscape Mode it's sometimes showing strange horizontal lines. I've absolutely no idea about where to look for the mistake.

a screenshot showing what it looks like on the ipad:

a link to the webpage (still in progress)

any advise?

1 Answers1

1

do you own a mac? if yes, open the emulator, safari with developer mode enable and inspect the element to determinate which one is giving the error, once you have that you can either use css queries to target ipads or use Mobile Detect to inject the respective css only when is needed

enter image description here

In this particular case you can use this:::

@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
 .sliderDivide.hide-phone{display:none;}
}
Jorge Y. C. Rodriguez
  • 3,394
  • 5
  • 38
  • 61