CSS PseudoClass for a Drop Cap
Not sure if I posted this before, but removing it from one of my current dev sites – sort of getting in the way at the moment. And on a 100+ page site, do NOT have time to go back and clean up <p> tags… Putting this here for safekeeping – hopefully someone ELSE will need this code at some point in the future. Obviously, modify as needed LOL
#inner p:first-child:first-letter {
float:left;
font-size:4em;
color: #b88e52;
margin-right:0.10em;
line-height:90%;
text-shadow: 0.05em 0.05em #C0C0C0;
}