Mobil classic slider bottom gray problem

How do I remove the gray space at the bottom?

Hello @Temizlikbu,

Thanks for writing in!

By default, the background color of the classic slider is transparent. It is gray because you have have added it as it is evident in this custom css that is on your site:

.x-flexslider {
    width: 100%;
    margin: 0 0 1.5em;
    background: #e6e6e6;
    position: relative;
}

Please have it updated and then use this instead:

.x-flexslider {
    width: 100%;
    margin: 0 0 1.5em;
    background: transparent;
    position: relative;
}

After doing the updates, always remember to clear all caches since you are using WP Rocket so that the code from the latest release is always in use. This will help you to avoid any potential errors. And please clear your browser cache too. You may use private browsing mode in testing your site to make sure that you are viewing the latest codes from the updates and not the cached version in your browser.

This links might help:

Best Regards.

1 Like

The problem here is not related to color.
When the second picture arrives, there is a space below.

Hello @Temizlikbu,

I am no longer seeing a gray color or a gap at the bottom of the slide.

I also noticed that you are using WP Rocket. Have you cleared your WP Rocket cache and your browser cache already?

Regards.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.