• Resolved emax3

    (@emax3)


    In the frontend the images are not displayed in the slides and I don’t understand why. In the Elementor preview (backend) instead they are visible.

    I tried disabling some plugins, clearing cache and reloading images. help.

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support Robert

    (@robertnextendweb)

    Hi @emax3

    The problem is caused by this custom CSS:

    * {
    margin: 0 auto;
    text-decoration: none !important;
    outline: none !important;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizelegibility;
    }

    More specifically, by the margin. This is code is from this file:
    https://www.aiaspalermo.org/nuovo/wp-content/themes/adventz/assets/css/adventz-custom.css?ver=1728307365

    It is generally a bad practice to add margin to the * selector, as that is way too generic, and will have an undesirable result most of the time. So you should remove it from there, or modify the selector, so it targets exactly what you need, and that will resolve the problem.

    Thread Starter emax3

    (@emax3)

    Removed the css line and it works. thank you so much!!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.