Changing breadcrumbs delimiter & Bootstrap
-
Topic
-
Hi Jason,
I’m trying to change the breadcrumbs delimiter using the following code.
/*-------------------------------------------------------*/ /* Modify ThemeBlvd breadcrumb delimiter /*-------------------------------------------------------*/ function my_breadcrumb_atts( $atts ) { $atts['delimiter'] = '<span class="divider">></span>'; return $atts; } add_filter( 'themeblvd_breadcrumb_atts', 'my_breadcrumb_atts' );
I’ve added this before the framework is called in my functions file. Although, it is showing, it’s not taking the place of the default delimiter “/”. So, both delimiters are showing, but I’m guessing that the second delimiter is being put there by Bootstrap.
I’ve tried to modify the delimiter with my custom CSS file, but it’s not overwriting the bootstrap.min.css values. How do I get rid of the Bootstrap delimiter?
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- You must be logged in to reply to this topic.