Title: Problem with breadcrumbs
Last modified: February 28, 2019

---

# Problem with breadcrumbs

 *  Resolved [tutumu](https://wordpress.org/support/users/tutumu/)
 * (@tutumu)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/problem-with-breadcrumbs/)
 * Hello.
 * I have a problema with breadcrumbs in my web with Evolve theme. Breadcrumb separators
   are deformated.
 * The problem happens with Wp4 and WP5 versions.
 * What can I do?
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fproblem-with-breadcrumbs%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 10 replies - 1 through 10 (of 10 total)

 *  [Romik84](https://wordpress.org/support/users/romik84/)
 * (@romik84)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/problem-with-breadcrumbs/#post-11260543)
 * Hello [@tutumu](https://wordpress.org/support/users/tutumu/),
 * it seems a plugin conflict with a cookie plugin. Please try to deactivate it 
   to check if it helps 😉
 *  Thread Starter [tutumu](https://wordpress.org/support/users/tutumu/)
 * (@tutumu)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/problem-with-breadcrumbs/#post-11262176)
 * First, thany you very much for response.
 * I have “Cookie Notice” plugin for cookies. Plugin is updated. I’ve deactivated
   this plugin but my problem continues… breadcrumbs are deformated.
 * I’ll keep deactivated the plugin so you can review all.
 *  [Romik84](https://wordpress.org/support/users/romik84/)
 * (@romik84)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/problem-with-breadcrumbs/#post-11262389)
 * try deactivate the child theme, if it’s correctly defined.
 *  Thread Starter [tutumu](https://wordpress.org/support/users/tutumu/)
 * (@tutumu)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/problem-with-breadcrumbs/#post-11263883)
 * I tried to deactivate child theme and… then breadrumbs are OK!
 * But I don’t understand, my child theme is very basic.. I’ve tried to deactivate
   all archives changed and keeping only the style.css and functions.php files. 
   But by this way breadcrumbs don’t work ok.
 * The content of these files is standard… I paste it.
 * Style.css
 *     ```
       /* 
       Theme Name:		 evolve child theme
       Theme URI:		 http://www.websitebundles.com/
       Description:	 Theme by Site <a href=\"http://childthemegenerator.com/\">http://childthemegenerator.com/</a>
       Author:			 WebsiteBundles
       Author URI:		 http://childthemegenerator.com/
       Template:		 evolve
       Version:		 1.0.0
       Text Domain:	 evolve-childNEW
       -------------------------------------------------------------- */ 
   
       /* Aqui empieza la personalizacion del tema
       ------------------------------------------------------- */
       ```
   
 * functions.php:
 *     ```
       <?php
       /* CODIGO ACTIVACION PLANTILLA CSS TEMA PADRE*/
       add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
       function theme_enqueue_styles() {
           wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
           wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array('parent-style')
           );
       }
   
       /* Cambiar texto de read more
       function be_excerpt_more( $more ) {
       	return 'Leer más';
       }
       add_filter( 'excerpt_more', 'be_excerpt_more' );*/
   
       ?>
       ```
   
 * Any suggestion? Thanks.
 *  [Romik84](https://wordpress.org/support/users/romik84/)
 * (@romik84)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/problem-with-breadcrumbs/#post-11264365)
 * use a child theme configurator plugin. Styles are not defined correctly
 *  Thread Starter [tutumu](https://wordpress.org/support/users/tutumu/)
 * (@tutumu)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/problem-with-breadcrumbs/#post-11267091)
 * Hello.
 * I’ve configured a new child theme (with another code) and problem with breadcrumbs
   continues. So I’ve returned to old child theme.
 * This is the code of new child theme for test:
 * functions.php
 *     ```
       <?php
       add_action( 'wp_enqueue_scripts', 'theme_slug_enqueue_styles' );
       function theme_slug_enqueue_styles() {
           $parent_style = 'evolve-style'; // Tema padre
           wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
           wp_enqueue_style( 'child-style',
               get_stylesheet_directory_uri() . '/style.css',
               array( $parent_style ),
               wp_get_theme()->get('Version')
           );
       }
       ?>
       ```
   
 * style.css
 *     ```
       /* 
       Theme Name:		 evolve child theme
       Theme URI:		 https://theme4press.com/evolve-multipurpose-wordpress-theme/
       Description:	 evolve by Theme4Press is an eye-catching and minimal WordPress theme built for web enthusiasts who like effective yet sweet website
       Author:			 Theme4Press
       Author URI:		 https://theme4press.com
       Template:		 evolve
       Version:		 1.0.0
       Text Domain:	 evolve-child
       -------------------------------------------------------------- */
       ```
   
 * Is it possible that is there a problem of compatiblity with breadcrumbs and child
   themes?
 * Thanks.
 *  [Romik84](https://wordpress.org/support/users/romik84/)
 * (@romik84)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/problem-with-breadcrumbs/#post-11267232)
 * the definition in the **functions.php** is not correct. Correct is:
 *     ```
       // Enqueue parent action
   
       if ( ! function_exists( 'evolve_parent_css' ) ) {
       	function evolve_parent_css() {
       		wp_enqueue_style( 'evolve-parent', trailingslashit( get_template_directory_uri() ) . 'style.css', array( 'evolve-bootstrap' ) );
       	}
       }
       add_action( 'wp_enqueue_scripts', 'evolve_parent_css', 10 );
       ```
   
 *  Thread Starter [tutumu](https://wordpress.org/support/users/tutumu/)
 * (@tutumu)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/problem-with-breadcrumbs/#post-11267233)
 * Finally I’ve reasearched and I’ve got a solution for my problem editing CSS style
   on child theme. I’ve added this code and now breadcrumbs works ok:
 *     ```
       .breadcrumb-item:before {
       	border: none !important;
       	padding: 0 !important;
         transform: none !important;
         -ms-transform: none !important;
         -webkit-transform: none !important;
         vertical-align: 0 !important;
       }
       ```
   
 * Thank you
 *  Thread Starter [tutumu](https://wordpress.org/support/users/tutumu/)
 * (@tutumu)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/problem-with-breadcrumbs/#post-11267260)
 * Tested with the function that you say for functions.php file and works perfectly
   too (without changes on css style). Better on this way… code more clear.
 * Thank you very much!!
 *  [Romik84](https://wordpress.org/support/users/romik84/)
 * (@romik84)
 * [7 years, 3 months ago](https://wordpress.org/support/topic/problem-with-breadcrumbs/#post-11267274)
 * you are welcome 😉

Viewing 10 replies - 1 through 10 (of 10 total)

The topic ‘Problem with breadcrumbs’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/evolve/4.3.7/screenshot.png)
 * evolve
 * [Support Threads](https://wordpress.org/support/theme/evolve/)
 * [Active Topics](https://wordpress.org/support/theme/evolve/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/evolve/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/evolve/reviews/)

 * 10 replies
 * 2 participants
 * Last reply from: [Romik84](https://wordpress.org/support/users/romik84/)
 * Last activity: [7 years, 3 months ago](https://wordpress.org/support/topic/problem-with-breadcrumbs/#post-11267274)
 * Status: resolved