Site logo

[Resolved] How can I make the thumbnail not cut, and the title comes out to the bottom?

Home Forums Support [Resolved] How can I make the thumbnail not cut, and the title comes out to the bottom?

Home Forums Support How can I make the thumbnail not cut, and the title comes out to the bottom?

Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • #2500858
    WOOSUNG

    The webp thumbnail size is 1200 x 628.

    The screen looks cut on the mobile and the title appears next to the right side of the picture.

    In the mobile How can I make the thumbnail not cut, and the title comes out to the bottom?

    Address : https://www.rjjabase.com/

    https://blog.naver.com/PostView.naver?blogId=lovelord5&Redirect=View&logNo=222988534722&categoryNo=430&isAfterWrite=true&isMrblogPost=false&isHappyBeanLeverage=true&contentLength=3089&isWeeklyDiaryPopupEnabled=false#

    #2500943
    Fernando
    Customer Support

    Hi Woosung,

    What if you set the Image to have an object-fit of contain? Try adding this CSS through Appearance > Customize > Additional CSS:

    .blog .inside-article .post-image img {
        object-fit: contain;
    }

    Does this work?

    #2500950
    WOOSUNG

    In the mobile the problem where the title is visible next to the thumbnail has not been resolved.

    When I added the code you told me to css, the thumbnail was solved.

    How can I send the title under the thumbnail?

    website address : rjjabase.com

    #2500952
    Fernando
    Customer Support

    Try adding this CSS as well:

    @media (max-width: 768px) {
        .blog .inside-article .post-image, .blog .inside-article .post-image img  {
            width: 100%;
        }
        
    }
    #2500955
    WOOSUNG

    Thank you. Fernando !

    Now that the thumbnail looks small, can I make it full in the background?

    #2500963
    Fernando
    Customer Support
    #2500972
    WOOSUNG

    Hello.

    I am done already this code. but It is too small in mobile.

    How to change full ?

    #2500993
    WOOSUNG

    Thanks for your help.

    The thumbnail is too small in the mobile environment.

    Is there a css code that can make the thumbnail look full ?

    #2501025
    Fernando
    Customer Support

    Can you double-check if you have a syntax error somewhere in Additional CSS?

    Copy and test all the code you have there here: https://codebeautify.org/cssvalidate

    #2501066
    WOOSUNG

    Thank u . kindley.

    There are no errors in the additional css.

    However, 116 errors are seen in the existing css.

    If I may
    I will let you know the login ID and pw, so could you take a look?

    #2501071
    Fernando
    Customer Support

    We can’t take a look at all the errors. It would be best to reach out to a developer regarding this.

    With regards to the issue at hand, replace this:

    @media (max-width: 768px) {
        .blog .inside-article .post-image {
            width: 100%;
        }
    }

    with this:

    @media (max-width: 768px) {
        .blog .inside-article .post-image, .blog .inside-article .post-image img  {
            width: 100%;
        }
        
    }

    as mentioned. Let us know how it goes.

    #2501083
    WOOSUNG

    Thanks.

    Both codes come out in valid CSS.

    It says there’s nothing wrong.

    #2501089
    Fernando
    Customer Support

    You still haven’t replaced the code. Please replace it first as mentioned.

    #2501094
    WOOSUNG

    Thank you !!

    It’s resolved.

    #2501096
    Fernando
    Customer Support

    You’re welcome, Woosung!

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