Hi,
I cannot get the revolution slider to be full width as is shown on the Flexform demo site. I have created a Home page, added a slider as “Auto Responsive”, 1170×450 and still no go. After digging a bit into code it appears that line #391 of the header.php code is NOT TRUE so the revslider never gets wrapped in the correct markup.
if (is_page()) {
$show_posts_slider = get_post_meta($post->ID, 'sf_posts_slider', true);
$rev_slider_alias = get_post_meta($post->ID, 'sf_rev_slider_alias', true);
if ($show_posts_slider) {
get_posts_slider();
} else if ($rev_slider_alias != "") { ?>
<div class="home-slider-wrap">
<?php echo do_shortcode('[rev_slider '.$rev_slider_alias.']'); ?>
</div>
<?php }
}
In fact the meta option “sf_rev_slider_alias” is not set anywhere in my wp_postmeta table which leads me to believe that either I am adding the slider incorrectly for the home page or there is a bug somewhere…
Tx,
Jason