diff options
-rw-r--r-- | inc/template.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/inc/template.php b/inc/template.php index 1d812cab3..a02493994 100644 --- a/inc/template.php +++ b/inc/template.php @@ -745,7 +745,7 @@ function tpl_breadcrumbs($sep='»'){ } //render crumbs, highlight the last one - print $lang['breadcrumb'].':'; + print '<span class="bchead">'.$lang['breadcrumb'].':</span>'; $last = count($crumbs); $i = 0; foreach ($crumbs as $id => $name){ @@ -781,7 +781,7 @@ function tpl_youarehere($sep=' » '){ $parts = explode(':', $ID); $count = count($parts); - echo $lang['youarehere'].': '; + echo '<span class="bchead">'.$lang['youarehere'].': </span>'; // always print the startpage $title = p_get_first_heading($conf['start']); |