How can I fix the theme of my breadcrumb without affecting the other elements that use that same table start function?
open your theme.php, and find;
// HTML template for the breadcrumb
$template_breadcrumb = <<<EOT
Now you will see the html table cell for the breadcrumb, which is currently 'class="tableh1"'. You can change this cell to have whatever properties you want.
Quote from: "casper"open your theme.php, and find;
// HTML template for the breadcrumb
$template_breadcrumb = <<<EOT
Now you will see the html table cell for the breadcrumb, which is currently 'class="tableh1"'. You can change this cell to have whatever properties you want.
Yes, I know, but that will alter the other tables as well. I have decided to do something different anyway, which will be less trouble.
It should only change other tables if you changed the style.css. Changing just that cell, in theme.php, from class h1 , and giving it it's own colour, text size/colour etc would only change the breadcrumb cell, nothing else.
I decided it wasn't worth the trouble, so I just let it be.