Page 1 of 1

Breadcrumb color css?

Posted: Sun 16. Nov 2003, 22:21
by Repute
Where can i set the home tekst color from #000000 to #FFFFFF?

Thnx,

Repute

Posted: Mon 17. Nov 2003, 10:21
by Oliver Georgi
Do it like I did:

I have my breadcrumb inside a table cell

Code: Select all

<td class="breadcrumb">{BREADCRUMB}</td>
but you can also do it like this:

Code: Select all

<span class="breadcrumb">{BREADCRUMB}</span>
or this

Code: Select all

<div class="breadcrumb">{BREADCRUMB}</div>
or this

Code: Select all

<span style="color:#FFFFFF;">{BREADCRUMB}</style>
Oliver

great!

Posted: Mon 17. Nov 2003, 10:44
by Repute
Wow great!

YOUR THE BEST!