Is there a way to add the slider to the header.php so that it will display on every page above the container?
Thanks for your help!
Is there a way to add the slider to the header.php so that it will display on every page above the container?
Thanks for your help!
there is a widget area called "Adspace - top of the page" that will add stuff above the header, but not above the container. create a page with the slider shortcode and add it to that widget area with the BF Page widget.
Here's code to add it above the container (add it to functions.php in a childtheme):
function myslider() {
echo do_shortcode('<div class="inside">[bfslider height="350" width="900"]</div>');
}
add_action( 'bf_top', 'myslider', 1);
Here the width is set to 900 to align with the container, so the images inserted into the pages got to be 900px in width then.
You must log in to post.