Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #313257
    mikulski
    Participant

    A gallery with images in several columns after some of the updates began to be displayed under each other. At the same time, everything is fine in the editor.

    img1

    img2

     

    #313262
    tikaram
    Keymaster

    @mikulski : Can you please explain in more detail regarding the issue and post in the site URL as well so that I can check for the issue on your site and provide you the fix.

    Regards,
    Tikaram

    #313263
    mikulski
    Participant

    I attached screenshots in the last post. I think they quite clearly demonstrate what is happening

    https://mikulski.rocks/bg-previews/

    #313265
    Sakin
    Keymaster

    @mikulski : It’s a little strange why it’s not working on your site. We tested on our server and it’s working fine. So, for quick fix, please add the following CSS in “Appearance => Customize => Additional CSS” box:

    body .is-layout-flex {
      display: flex;
      flex-wrap: wrap;
    }
    
    figure.wp-block-gallery.has-nested-images {
      align-items: normal;
    }

    Note: Also, I see one issue in your Custom CSS code which you currently have. Please search for this CSS in your Custom CSS box:

    .singular-content-wrap .entry-header {
        padding: 0 0 10px;
        /*background-image: url(https://mikulski.rocks/wp-content/uploads/2022/07/headerbgmoface.webp)*/;
    }

    There you can see that you have commented out the background image but the closing comment tag is before the semicolon. It should be after the semicolon like below:

    .singular-content-wrap .entry-header {
        padding: 0 0 10px;
        /*background-image: url(https://mikulski.rocks/wp-content/uploads/2022/07/headerbgmoface.webp);*/
    }
    #313278
    mikulski
    Participant

    It worked! Thank you so much for the quick response and for pointing out the problem place!

    #313495
    Sakin
    Keymaster

    @mikulski: Glad to hear that my support worked on your website. If it’s not too much trouble, I have a quick request: could you please leave an honest review? https://wordpress.org/support/theme/chique-music/reviews/#new-post. Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated.

    Regards,
    Sakin

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘The gallery is displayed incorrectly’ is closed to new replies.