• Where would I look to find the code that is cropping the height on the slider images in the mobile view? I have a big, gorgeous photo there that displays perfectly on a computer screen, but when I check it on my iPhone 5s, it’s had half of it chopped off the bottom. I’ve looked in the CSS files, the theme functions, etc. but can’t seem to locate the piece of code that is causing this.

    URL: http://ashleyheckman.com/training/

    Screenshot of iPhone view: http://s24.postimg.org/6h9ltcs3p/IMG_0693.png

Viewing 1 replies (of 1 total)
  • There is a css file in the plugin that is controlling that piece. I am not familiar with the plugin so I don’t know if there is a specific setting for this but you can do it with css. try this in your custom css file or at the bottom of your child theme’s style.css file.

    @media (max-width: 768px) {
        .flexslider {
            margin: 0 0 100px !important;
        }
    }

    that media query will kick in at an ipad portrait width

Viewing 1 replies (of 1 total)

The topic ‘Slider Image Height on Mobile’ is closed to new replies.