Bryan Willis
Bryan Willis
I also got this result using [placehold.it](https://placehold.it/) images
> Since we're using Bootstrap Nav (rather than Genesis built-in nav) we don't need drop-down-menu. the bs navwalker uses [aria-haspopup](https://www.w3.org/TR/wai-aria/states_and_properties#aria-haspopup) accessibility features already so I'm pretty sure we could just...
Awesome!
Any thought on this? Here's an even more advanced example... I can honestly say that this has made things so much easier when editing the menu as each menu is...
Here's some examples possible with all this: **Change primary menu container to container-fluid:** ``` php add_filter( 'genesis_structural_wrap-menu-primary', 'tbg3_wrap_container_fluid', 99, 2); ``` **Move submenu to the right side:** ``` php add_filter(...
Sorry about that Sal. I added a third level to my menus a while back, but didn't include that code since it wasn't part of bootstrap core and I forgot...
In regard to the custom attributes, here's a handy function I wrote to return the current `genesis_attributes` to add to the `bsg-classes-to-add` array. ``` php if( current_user_can('administrator') ) { add_action(...
I mentioned this idea here awhile back about changing the `.wrap` class in structural wraps to `.container`. I think we should reconsider this or doing something similar. Currently "almost" every...
Update: Adding a helper function would let developers change or remove `container` to `container-fluid` wraps on the fly. Currently the hard coded [container-fluid method](https://github.com/salcode/bootstrap-genesis/blob/develop/lib/nav.php#L49) were implementing limits the value a...
Needs some improving upon... but it works. ``` php function bsg_grid_loop_pagination( $query = false ) { global $wp_query; if( !isset( $query ) || empty( $query ) || !is_object( $query )...