There seems to be problems with the link text,

for example the header bit, where it says

// Home » Administer » Site building

It displays like:

// HomeArticle title here

so, it seems the link isnt formed properly and renders use of the theme out of the question

Comments

zooki’s picture

Title: Link Text in Header Does not Appear correct » Fixed

This slight code change seemed to do the trick in page.tpl

 <div id="header-image">
      <?php 
      $breadcrumb2 = str_replace(' › ', ' // ', $breadcrumb);
      $breadcrumb3 = str_replace('<div class="breadcrumb">', ' ', $breadcrumb2);
      if ($is_front) {print '<div class="breadcrumb">// ' . t('Home') . '</div>';} else { echo '<div class="breadcrumb">// ' . str_replace('</div>', ' » ', $breadcrumb3) . $title . '</div>' ;} ?>
    </div> 

I added » which makes >>

ericjam’s picture

Title: Fixed » Breadcrumb link spacing
Status: Postponed (maintainer needs more info) » Closed (fixed)

Closed, its easy just fix the php as noted above