Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Lussumo Community (orange)
Hi All,
I have been searching as how to achieve a t"wo-words forum title with two different color for each word". Just like the Lussumo Community forum title we can see above, black + orange.
Any help would be appreciated :)
Regards,
forrestRain
0
This discussion has been closed.
Comments
To be really semanticly correct, it should be:
< style type="text/css"> #Header h1 strong.UpperCase { text-transform: uppercase;} #Header h1 strong.Orange { text-transform: capitalize; color: orange; } </style > ... <h1><strong class="UpperCase">Look</strong> n <strong class="Orange">share</strong></h1>
(the name of the classes should also be more meaningfull)