Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Mohsin Rasool

    (@mohsinrasool)

    It should be 100% width of the container. Your container might be of full width. Can you give me a test URL where I can check?

    Thanks

    Thread Starter ebiz98

    (@ebiz98)

    Many thanks for the incredible fast reply!

    http://surl.jp201.com/?fem

    As you can see the setting is set to 100%, –
    When I set the image width to 500px it is a bit better, but still the white border is “thick”..

    Images in the gallery are set to auto-resize to 800×600

    Plugin Author Mohsin Rasool

    (@mohsinrasool)

    As I suspected, one of your stylesheet’s css rule making image resize to 500px. Please add following CSS to your style.css to fix it.

    .flexslider .feature-image img {
       max-width: 100% !important;
    }

    Once you add it, slider will look awesome. 🙂

    btw, very nice test page you set up.

    Thread Starter ebiz98

    (@ebiz98)

    Ah! perfect.. Works!
    MANY thanks for the comment and the response.

    On the second question:
    2) Is there a way to change the white background to another color?

    Thread Starter ebiz98

    (@ebiz98)

    (hope you do not mind I am testing this 🙂

    Sorry – one more issue I found:
    One of the images I have in the slide set is portrait image 400×600
    the slider resizes it BIG (like double the size)
    (you can see it in the test page, the 5th picture).

    Thoughts?

    Plugin Author Mohsin Rasool

    (@mohsinrasool)

    Well, to change or disable white background

    .flexslider {background:none !important;box-shadow:none !important}
    .flexslider .slides{background:none !important;}

    And to fix the portrait, you should resize images to width of your content i.e. 500px otherwise you will notice crop on the right side of the landscape pictures. Please replace the CSS I gave earlier with following

    .flexslider .feature-image img {
    max-width: none !important;
    width: auto !important;
    display: inline !important; /* To centralize the portrait photos*/
    }

    Thanks for testing out. I do feel that plugin should have option to change the background. I will add it in next upgraded (in couple of days).

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Image Slider – not full width Image’ is closed to new replies.