Breadcrumb styling question - Active Breadcrumb. - Joomla! Forum - community, help and support
hi
i'm new joomla.
how style active breadcrumb displayed red?
i want final breadcrumb, 1 farthest right, active page, red.
do need special 3rd party breadcrumb generator thing?
thanks
i'm new joomla.
how style active breadcrumb displayed red?
i want final breadcrumb, 1 farthest right, active page, red.
do need special 3rd party breadcrumb generator thing?
thanks
you edit file default.php located in directory \modules\mod_breadcrumbs\tmpl achieve this.
before statement endfor; ?> notice following line of code.
alter code , add style attribute shown below.
note: being core joomla! file, suggest using html output override technique documented @ http://docs.joomla.org/how_to_override_the_output_from_the_joomla!_core.
before statement endfor; ?> notice following line of code.
code: select all
echo '<span>';
echo $list[$i]->name;
echo '</span>';
code: select all
echo '<span style="color:red;">';
echo $list[$i]->name;
echo '</span>';note: being core joomla! file, suggest using html output override technique documented @ http://docs.joomla.org/how_to_override_the_output_from_the_joomla!_core.
Comments
Post a Comment