How can i get work the "Adspace Blog Hom Below Nav" on each static site?
I want to build my site in the following order
From top to bottom
Logo
Navigation
Adspace with big Image 848x300
Content
...
...
Thx
How can i get work the "Adspace Blog Hom Below Nav" on each static site?
I want to build my site in the following order
From top to bottom
Logo
Navigation
Adspace with big Image 848x300
Content
...
...
Thx
How can i get work the "Adspace Blog Hom Below Nav" on each static site?This widget area only shows on the blog index, and not on a static frontpage. Not sure what you mean about "each static site" though.
If you want to add a custom widget area to appear below the header everywhere, then:
1. Create a Custom Widget Area in the theme settings.
2. Add the code below to functions.php (preferably in a child theme):
function add_custom_widgetarea() { echo do_shortcode('[widgetarea id="wabh"]'); }
add_action( 'bf_belowheader', 'add_custom_widgetarea' );
Here the id is set to wabh, and that is the same as entered as the custom widget area name in step 1.
Ok, after that the sidebar moves to the left and the new widget only has the width of the sidebar. I want an area with 848x300px below the navigation.
add a vertical="false parameter to the shortcode. more parameters can be found in the shortcode gui (button below the page/post editor).
function add_custom_widgetarea() { echo do_shortcode('[widgetarea id="wabh" vertical="false"]'); }
add_action( 'bf_belowheader', 'add_custom_widgetarea' );
You must log in to post.