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

    (@jleuze)

    Hi, the slideshow is in the featured-image container, which is a column that takes up half the width of the site next to the content column before it:

    <div id="featured" class="grid col-940">
    	<div class="grid col-460">...</div><!-- end of .col-460 -->
    
    	<div id="featured-image" class="grid col-460 fit">
    		<div id="meteor-slideshow" class="meteor-slides  navboth" style="width: 1900px; height: 800px;">...</div><!-- .meteor-slides -->
    	</div><!-- end of #featured-image -->
    </div><!-- end of #featured -->

    Instead, you want to remove the two grid containers and add the slideshow on its own inside the featured container:

    <div id="featured" class="grid col-940">
    	<div id="meteor-slideshow" class="meteor-slides  navboth" style="width: 1900px; height: 800px;">...</div><!-- .meteor-slides -->
    </div><!-- end of #featured -->

    You might be using the shortcode right now to add the slideshow? To setup a full width slideshow like this you need to edit the home.php file and using the slideshow template tag. Make sure you use a child theme so you don’t lose your changes when you update the theme later.

    Thread Starter trantonroad

    (@trantonroad)

    Perfect, I’ll do it. Thanks a lot Josh!

    Plugin Author Josh Leuze

    (@jleuze)

    You’re welcome!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Can Meteor Slides get all the Content Area?’ is closed to new replies.