CSS breadcrumbs Help formating fonts

trollmann

New Member
I am having some difficulty changing font color decoration ect across the same DIV tag.What i want to do is make a breadcrumb type navigation on certain pages in my site and i would like to minimize the amount or Div's i use so as to make it easier to maintain.here is what i have and would like to do. thanks.\[code\] <div id="product-breadcrumbs"> <div id="breadcrumbs">(Link and color) // (another link and another color) </div> </div> \[/code\]CSS\[code\] #product-breadcrumbs {position: absolute;left: 0px;top: 66px;width: 1024px;height: 34px;background-color: #E7E5F2; } #breadcrumbs {position: relative;padding-top: 7px;padding-bottom: 7px;text-align: left;text-indent: 140px;font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;font-size: 14px;font-weight: bold;color: #09C;text-decoration: none; }\[/code\]
 
Back
Top