styling new widget areas in header
-
Topic
-
Hi Jason – thanks for your help over at Alyeska learning how to create a new Widget area – now that I’ve moved my development to JumpStart it makes sense to continue over here as I work on styling my new widgets.
I have added two widgets – one above the header and one to the right.
Header.php
/** * My header content */ function my_header_content() { themeblvd_display_sidebar( 'my_header_widget_area' ); } add_action( 'themeblvd_header_addon', 'my_header_content' ); /** * Add new sidebar location. Header above */ themeblvd_add_sidebar_location( 'my_header_above_widget_area', 'My Header Above', 'collapsible' ); /** * My header above */ function my_header_above() { echo ''; themeblvd_display_sidebar( 'my_header_above_widget_area' ); echo ''; } add_action( 'themeblvd_header_above', 'my_header_above' );
Header logo has a unique id () which makes it easy to style
How do I give each of my new Widgets a unique ID?link to site: http://jumpstart.teamsfirst.ca/
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- You must be logged in to reply to this topic.