• Resolved davidvb

    (@davidvb)


    Hi,

    My client wants the caption of the picture to be underneath his paintings depicted on the website.
    No it seems that ‘caption underneath’ only works when ‘image fit’ is set to ‘default’.
    It doesn’t work with ‘image fit’ set to ‘fill’ of ‘fit’.
    Is there a solution, workaround for this problem?

    Thanks!
    David

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

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter davidvb

    (@davidvb)

    I added this custom css:
    .wp-block-getwid-images-slider__caption
    {
    text-transform: uppercase;
    font-size: 12px;
    background-color: transparent !important;
    }
    However, the background-color isn’t set to transparent.
    This seems to be due to:

    wp-block-getwid-images-slider has-arrows-outside has-dots-outside has-captions captions-style-light captions-bottom-center has-images-center has-fitted-images has-fixed-height getwid-init

    How can I override the ‘captions-style-light’?

    Hello,
    You could force the caption to be underneath with this CSS:

    .wp-block-getwid-images-slider .wp-block-getwid-images-slider__item figure {
      flex-direction: column !important;
    }
    .wp-block-getwid-images-slider .wp-block-getwid-images-slider__item figcaption {
      position: static !important;
    }

    For you background problem try:
    background: transparent !important
    Instead of:
    background-color: transparent !important

    Plugin Support eugenewhite

    (@eugenewhite)

    Hello there!

    The issue has been resolved via the support platform.

    Good job ????

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Image Slider, Caption Underneath only works with ‘default’ setting’ is closed to new replies.