Title: [Plugin: Really Simple Breadcrumb] Some usefull tips&#8230;
Last modified: August 20, 2016

---

# [Plugin: Really Simple Breadcrumb] Some usefull tips…

 *  Resolved [cokeyblokey](https://wordpress.org/support/users/cokeyblokey/)
 * (@cokeyblokey)
 * [13 years, 8 months ago](https://wordpress.org/support/topic/plugin-really-simple-breadcrumb-some-usefull-tips/)
 * Nice, simple plug-in – thank you!
 * Some helpful tips for other users…
 * If you are adding the class ‘.breadcrumb’ to your themes css, you will need to
   add the ‘!important’ property to your padding and font-size styles, within the
   class, as the plug-in adds it’s own ‘.breadcrumb’ class styles into the head 
   of the document and without ‘!important’ these will take priority.
 * The ‘Home’ link of the breadcrumb currently uses the blogs name as the text for
   the link. To change this to ‘Home’ (or whatever you require) change the following
   line in ‘breadcrumb.php’:
 * > `bloginfo('name');`
 * to:
 * > `echo "Home";`
 * To exclude breadcrumbs from the homepage, change the line you added to page.php(
   or wherever you put it) from:
 * > `<?php if(function_exists(simple_breadcrumb)) {simple_breadcrumb();} ?>`
 * to:
 * > `<?php if(function_exists(simple_breadcrumb) && !is_front_page()) {simple_breadcrumb();}?
   > >`
 * [http://wordpress.org/extend/plugins/really-simple-breadcrumb/](http://wordpress.org/extend/plugins/really-simple-breadcrumb/)

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

 *  [Nathan](https://wordpress.org/support/users/yodaman5556/)
 * (@yodaman5556)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/plugin-really-simple-breadcrumb-some-usefull-tips/#post-3042291)
 * I have been trying out loads of breadcrumb plugins for my WordPress website (
   [BrickExtra](http://brickextra.com)) and this one seems to be the only one that
   works properly for my theme (Mystique). My only problem with it is that the text
   that makes up the breadcrumbs is too small (I can hardly read it!). How would
   I go about making the text bigger?
 * Thanks in advance! 🙂
 *  Thread Starter [cokeyblokey](https://wordpress.org/support/users/cokeyblokey/)
 * (@cokeyblokey)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/plugin-really-simple-breadcrumb-some-usefull-tips/#post-3042292)
 * Hi Yodaman,
 * All you need to do is add a ‘.breadcrumb’ class to your style.css file.
 * In case you’re not familiar with the process: style.css can be edited in the 
   dashboard by going to ‘Appearance – Editor’. style.css is usually the default
   file loaded into the editor window. If it’s not then it can be found in the right
   hand column, near the bottom of the list.
 * Add in the following, substituting 14px for a size that fits your needs:
 *     ```
       .breadcrumb {
       	font-size:14px;
       }
       ```
   
 * You can add all kind of styles to that class to control the look of the breadcrumbs.
 *  [Nathan](https://wordpress.org/support/users/yodaman5556/)
 * (@yodaman5556)
 * [13 years, 4 months ago](https://wordpress.org/support/topic/plugin-really-simple-breadcrumb-some-usefull-tips/#post-3042293)
 * cokeyblokey, Thanks so much! 🙂 I have added the code and tweaked the font size
   to how I like it. My breadcrumbs now look much better! [See them here](http://brickextra.com).
 * Thanks again! 😉

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

The topic ‘[Plugin: Really Simple Breadcrumb] Some usefull tips…’ is closed to new
replies.

 * ![](https://s.w.org/plugins/geopattern-icon/really-simple-breadcrumb.svg)
 * [Really Simple Breadcrumb](https://wordpress.org/plugins/really-simple-breadcrumb/)
 * [Support Threads](https://wordpress.org/support/plugin/really-simple-breadcrumb/)
 * [Active Topics](https://wordpress.org/support/plugin/really-simple-breadcrumb/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/really-simple-breadcrumb/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/really-simple-breadcrumb/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [Nathan](https://wordpress.org/support/users/yodaman5556/)
 * Last activity: [13 years, 4 months ago](https://wordpress.org/support/topic/plugin-really-simple-breadcrumb-some-usefull-tips/#post-3042293)
 * Status: resolved