• Resolved sasag

    (@sasag)


    Hello i got a problem with mobile view , the text title/description of picture that overlay on mobile view got big font, how to make it smaller? so it dont take so much space like 20% of photo .

    View post on imgur.com


    here is screenshot.

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @sasag)

    Please, try the following.
    Go to Appearance > Customize > Additional CSS
    Copy and paste this code, then click on “Publish”.

    @media (max-width: 600px) {
        .sl-wrapper .sl-image .sl-caption {
            font-size: 0.8rem;
        }
    }

    Let us know if that worked for you.

    Thread Starter sasag

    (@sasag)

    seems still big for me i mean black line not font, how to delete this caption ? i mean black line with text so picture is just clear without anything 🙂

    Hi @sasag
    We would be happy to help you. Kindly apply the following CSS to remove the image titles in Simple Lightbox on your mobile device.

    @media (max-width: 600px) {
        .sl-wrapper .sl-image .sl-caption {
    display: none !important;
    }
    }

    If you want to remove that black line in Desktop as well, you only need this code.

    .sl-wrapper .sl-image .sl-caption {
    display: none !important;
    }
Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘problem with mobile view’ is closed to new replies.