Title: Highlighting
Last modified: February 13, 2018

---

# Highlighting

 *  Resolved [hela12](https://wordpress.org/support/users/hela12/)
 * (@hela12)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/highlighting/)
 * Hi.
    I really like your plugin. Two little questions: 1) If I move the mouse 
   to a site-link in your breadcrumbs and wait a second a small highlighting pops
   up (with Information to the link). How can I remove this property? 2) Remove 
   the last >: I know you answered allready, but could you tell me please, where
   I do have write the code you answered.
 * Thank you so much.
    With best regards Volker

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

 *  Plugin Author [PickPlugins](https://wordpress.org/support/users/pickplugins/)
 * (@pickplugins)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/highlighting/#post-9970650)
 * Thanks for your post,
 * #1. This is called title property, you can remove title property by adding javascript,
   please follow the thread here
    [https://stackoverflow.com/questions/15364063/is-it-possible-to-hide-the-title-from-a-link-with-css](https://stackoverflow.com/questions/15364063/is-it-possible-to-hide-the-title-from-a-link-with-css)
 * #2. here is the CSS you will need to add theme style.css to work
 *     ```
       .breadcrumb-container li:last-child .separator:last-child {
       	display: none;
       }
       ```
   
 *  Thread Starter [hela12](https://wordpress.org/support/users/hela12/)
 * (@hela12)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/highlighting/#post-9979566)
 * Thank you so much. I think you mean the code
 * $(document).ready(function() {
    $(“a”).removeAttr(“title”); });
 * But where do I have to put it in, and how do I have to adjust this code for your
   Breadcrumb?
 * thank you so much for your support – awesome!
 *  Plugin Author [PickPlugins](https://wordpress.org/support/users/pickplugins/)
 * (@pickplugins)
 * [8 years, 3 months ago](https://wordpress.org/support/topic/highlighting/#post-9980447)
 * You almost there…
    try the following code,
 *     ```
       $(document).ready(function() {
       $(“.breadcrumb-container a”).removeAttr(“title”);
       });
       ```
   
 * you should add this code under any script file that loading on front-end.
    you
   can try these plugins [https://wordpress.org/plugins/header-and-footer-scripts/](https://wordpress.org/plugins/header-and-footer-scripts/)
   [https://wordpress.org/plugins/scripts-to-footerphp/](https://wordpress.org/plugins/scripts-to-footerphp/)
   Regards

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

The topic ‘Highlighting’ is closed to new replies.

 * ![](https://ps.w.org/breadcrumb/assets/icon-256x256.png?rev=2955681)
 * [Breadcrumb - Breadcrumb for WooCommerce and Custom Post Types](https://wordpress.org/plugins/breadcrumb/)
 * [Support Threads](https://wordpress.org/support/plugin/breadcrumb/)
 * [Active Topics](https://wordpress.org/support/plugin/breadcrumb/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/breadcrumb/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/breadcrumb/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [PickPlugins](https://wordpress.org/support/users/pickplugins/)
 * Last activity: [8 years, 3 months ago](https://wordpress.org/support/topic/highlighting/#post-9980447)
 * Status: resolved