• Resolved Chi Is Current

    (@jacobbarnett)


    What is the text syntax for: Align MetaSlider slideshow LEFT AND WRAPPING TEXT on right, on WordPress Page?

    Tried:<p style="text-align: left;">[metaslider id="5364"]<a href="https://healingessence.opptygo.com/customer/product/spbenxmtsshvdpecfwtwgydd"><strong>Healing Essence AM Formulas</strong></a>Is carefully prepared...

    Text does not align to top right of slideshow.

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi,

    CSS doesn’t work like that. You have to float the container so the text will wrap around it. Are you able to add some custom CSS?

    First, remove that <p> tag you added. Then add the following:

    #metaslider-id-5364 {
        float: left;
        margin-right: 1rem;
        margin-bottom: 1rem;
    }

    This only will work for the slider with the ID of 5364. If you want to add more, find the ID and add it to the list, like:

    #metaslider-id-5364,
    #metaslider-id-1234 {
        float: left;
        margin-right: 1rem;
        margin-bottom: 1rem;
    }

    Or if you want it to apply to ALL sliders, just use this:

    .metaslider {
        float: left;
        margin-right: 1rem;
        margin-bottom: 1rem;
    }
    Thread Starter Chi Is Current

    (@jacobbarnett)

    kbatdorf,

    Thank you for your reply & illumination!!!

    WORKS PERFECTLY!

    In Gratitude ~:~ Jacob

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Wrap Text to Right of MetaSlider Slideshow’ is closed to new replies.