• Great plugin. It has the flexibility to be used within code so I added it to the breadcrumbs of my theme I am using. I added a small amount of code to the functions.php:

    ...
       /* START CHANGES                      */
        /* Font-resizer right justified 	*/
        /*------------------------------------*/
    
        if (function_exists ('fontResizer_place')) {
    	echo '<span class="right_resizer">';
           fontResizer_place ();
    	echo '</span>';
        }
    
        /* END CHANGES */
    
        echo '</ul>';
    
      }
    } // end breadcrumbs()
    ...

    and then added some code to my child theme style.css:

    ...
    /* Added font resizer
    ----------------------------------------------- */
    .right_resizer .fontResizer {
      float: right;
      padding: 0;
      background: none;
    }

    Works great and did not interfere with the parent style or template responsiveness.

    Thank You

  • The topic ‘Very flexible, I used it to modifiy breadcrumbs’ is closed to new replies.