Viewing 1 replies (of 1 total)
  • I ran into a similar issue with a slider I was using. Basically the border you are putting on your image is adding to the width and height and therefore no longer fits in the parameters that are set. If you are using a theme that has overflow:hidden then the part that’s overflowing is getting cut off.

    ONE solution:

    img{
    box-sizing: border-box;
    }

    Be sure to put in -moz-, -webkit-, etc prefixes.

    Or just add some width and height to your slider to compensate for the extra space that’s put on from the border.

    I tested out the box-sizing in firebug and it worked on your site.

    Good Luck!

Viewing 1 replies (of 1 total)
  • The topic ‘Slideshow Border Cut Off’ is closed to new replies.