CSS not working (specifically bold & font size)
I've got a <p> with the class being p1. I have the following CSS for it:
p.p1 {
margin: 0 0 0 0;
text-indent: 3em;
font-family: "FELIXTI";
font-size: 100%;
min-height: 16px;
text-align: left;
font-weight: 900;
}
The text inside the p1 says Chapter One, but is showing up in normal font weight and normal size. I even went into the file itself and wrapped it in <strong> tags to see if that would do it and nada. It is ignoring that CSS. It has accepted the font family, but that's about all.
Am I missing something?
Thanks,
Raven
|