Simple method:
Code:
blockquote:first-letter {
text-transform: uppercase;
}
You should always target the elements you want to style i.e
Code:
h1.myclass a:first-letter {
text-transform: uppercase;
}
that means:
H1 of myclass find "a" tag change first letter to uppercase
When you show code on this forum please place your code with in [C
ODE][/CODE]
Thankyou