Hi there, vfx.
I was wondering if : is there a way to set a bfslider or nivoslider on a background on top of the page.
I would like to have a 1280px slider, but keep the container on 960px.
Thanks in advance
Raphael
Hi there, vfx.
I was wondering if : is there a way to set a bfslider or nivoslider on a background on top of the page.
I would like to have a 1280px slider, but keep the container on 960px.
Thanks in advance
Raphael
you can send stuff to the top with hooks. example code (add to functions.php of a child theme):
add_action( 'bf_top', 'topslider', 1 );
function topslider() {
echo '<div id="topslider">' . do_shortcode('[bfpage name="topslider"]') . '<div>';
}
Then you need to set the width and center align the #topslider div with css, and create a page called topslider with the slider shortcode.
thanks so much man. Again.
And , how can I get the feature image/feature area outside the container .
Actually I want : Navigation, logo and feature area outside container.
Thanks man.
create a custom header function and send it to the top with hooks like above. check the bfArea child theme, since this is done there.
You must log in to post.