Viewing 1 replies (of 1 total)
  • Plugin Author Josh Leuze

    (@jleuze)

    Hi schalk, you shouldn’t need tables or an additional plugin, a bit of CSS should do the trick nicely 🙂

    So if you have a slideshow added to a page with the shortcode and a bit of text that you want wrapped around it, you can just leave that content right like this in the page:

    [meteor_slideshow] Vivamus suscipit nisl vitae felis adipiscing eget molestie mi lacinia. Etiam interdum cursus velit, nec hendrerit ligula laoreet a. Nam egestas cursus quam ac semper. Vestibulum luctus adipiscing magna, vitae euismod mi luctus et. Donec consectetur auctor dui sed imperdiet. Mauris condimentum mattis aliquam.

    In your theme’s stylesheet, add a rule like this with the slideshow’s dimensions and a float, don’t forget to target the content div so it doesn’t affect your header slideshow:

    #content #meteor-slideshow {
    width: 300px;
    height: 220px;
    float: left;
    margin: 0 20px 20px 0;
    }

    That will wrap the text around the slideshow for you.

Viewing 1 replies (of 1 total)

The topic ‘Meteor Slideshow next to text’ is closed to new replies.