|
Don't know if this is the problem, but you have an extra right brace on your stylesheet for .fonttext right before .imagetext.
[HTML]
.fonttext {
font: normal 14px arial;
color: #00008b;
} <---
}
.imagetext {
font: bold 18px arial;
color: #00008b;
}
[/HTML]
|