Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #882143

    Hey Guys,

    i would need a little fix for my page… i use the slide show with caption and frame… so the color and position of the frame box i have already done… BUT, the box dont stay at the place where i want it to….

    the framed caption shoud be on the right bottom side and it should look like in the screenshot. BUT for every display and resolution. on mobile version i already fixed it (there is no caption usfull…)

    Is it possible to FIX the box on a place??

    Thanks,
    John

    #882510

    Hey Terrassenkind,

    Thank you for using Enfold.

    Use additional css media queries to adjust the position of caption on different screen sizes. Example:

    @media only screen and (max-width: 1366px) {
      /* Add your Desktop Styles here */
      .caption_right .slideshow_caption {
        right: 100px;
      }
    }
    
    @media only screen and (max-width: 1024px) {
      /* Add your Desktop Styles here */
      .caption_right .slideshow_caption {
        right: 50px;
      }
    }

    Best regards,
    Ismael

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