Okay
  Public Ticket #631361
Position Image on Nectar Slider
Closed

Comments

  •  2
    Serfyer started the conversation

    Hello!

    I have laid an image on top of a nectar slider image by pasting the image code into the caption section of the nectar slider preferences. It is the perfect size on a desktop screen but for some weird reason it is very tiny on mobile. I would like to increase it's size and position.

    I thought that there may be a problem with margins keeping it from scaling automatically, so I tried doing this:

    @media only screen and (max-width: 1000px) and (min-width: 1px) {
    body .contact .swiper-slide[data-x-pos="right"] .content p {
        margin: -30px;
        margin-top: 20px;
    }
    }

    How could I do this? Thank you!!

  •  8,992
    Tahir replied

    Hey ,

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :
    @media only screen and (max-width: 1000px) and (min-width: 1px) {
        .swiper-slide[data-x-pos=\"right\"] .content {
            width: 100% !important;
        }
    }

    Best.



    ThemeNectar Support Team 

  •  2
    Serfyer replied

    Thank you Tahir!!