Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author MatthewRuddy

    (@matthewruddy)

    Hi Viktoria, this is because you are using tables in your design which have border CSS properties added to them. As a result the slideshow is getting a slight border. You’ll need to make CSS modifications to your theme.

    I really wouldn’t advise designing a theme using table structures. These is a very outdated way to go about it and will cause you a lot of problems. It is probably overkill for the design layout you want to achieve as well. Use “div”s instead.

    Thread Starter Viktoria

    (@seotipv)

    Hi Matthew,

    It’s not the tables, when I put the slider to a page, without tables. The problem repeats.
    See link

    How can I fix this?

    Plugin Author MatthewRuddy

    (@matthewruddy)

    Ok, try adding the CSS below to your theme’s style.css file:

    .easingsliderlite-image {
        border: 0 !important;
    }

    Hopefully that will do the trick.

    Thread Starter Viktoria

    (@seotipv)

    Yes,it’s okay now, thank you!
    Another question, the previous version was an option to add padding in all directions in the slider, and now There is no option to do that. There is another option to put it in the slider?

    Plugin Author MatthewRuddy

    (@matthewruddy)

    Unfortunately not, you’ll have to do this manually via CSS.

    Thread Starter Viktoria

    (@seotipv)

    Can you tell me the exactly code I need to write? Will help me a lot.

    Thank you.

    Plugin Author MatthewRuddy

    (@matthewruddy)

    Add the code below to your themes style.css file. Replace the 0px values with the pixel values of the padding you wish to add.

    .easingsliderlite {
        padding-left: 0px;
        padding-top: 0px;
        padding-right: 0px;
        padding-bottom: 0px;
    }

    Should do the trick.

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Problem with the background behind the images on the right side’ is closed to new replies.