Hello ;
another question :
I try to change the Home by the Iconin breadcrumb.php $config['set_home'] = '../../image/supplement/home.png';here is a discussion about that
http://ellislab.com/forums/viewthread/137949/P150And I try the second method but the problem is word Home still appear and image disapear after when we return to the page
$config['set_home'] = "Home"; /** * ------------------------ * Config: attribute home * ------------------------ * Default value: * $config['attr_home'] = array(); * * Apply attribute to initial or home link, e.g: * $config['attr_home'] = array('style' => 'text-decoration:none', 'class' = 'home_breadcrumb'); * Only work if unlink_home is set to FALSE */ $config['attr_home'] = array('class' => 'home_breadcrumb'); in css .home_breadcrumb{ background-image: url(../image/supplement/home.png); background-repeat: no-repeat; }thanks
First, you have to make sure that unlink_home is set to FALSE then everything else is depends on what you have wrote on .home_breadcrumb on your css.