Viewing website on iPad

Hello Aigars,

I am experiencing some issues with viewing my website on an IPad. See the screenshot.

How can I fix this?

Regards,
Vincent

Sorry for late response. Just returned from vacation.

Add this code to Theme Options - Other - Custom CSS:

@media (min-width: 768px) and (max-width: 1000px) {
  .navbar-nav li a {
    padding: 16px 7px;
    font-size: 13px;
  }
  .carousel-caption h4 {
    font-size: 20px;
  }
}

This code will make sure to reduce menu item size on iPad in portrait orientation to make them fit on a single line. Also it will make carousel title font smaller, so it would fit better as well.