Re: My css wont ...
Minato wrote:.icon{ font-size: 8pt; font-family: verdana; color: #D78218; background: #000000; border: solid #D78218; border-width: 0px;
</style>
Oh, and additionally, you are missing a closing curly bracket there before the </style>.
Quote:input, iframe.htmleditor, .button .textfield, textarea, select {
border: 1px solid #5495CC;
background-color: #FFFFFF;
color: #5495CC;
font-family: Arial;
font-size: 10px;
line-height: 10pt;
color: #5495CC;
font-weight: normal;
letter-spacing:1px;
}
Here you specify the color twice.
Quote:.head {
font-family: verdana, tahoma;
font-size: 9px; font-weight:bold;
text-align: center; color: #B70408;
border: ##D95B1D; border-style: solid;
border-top-width: 0px; border-right-width: 0px;
border-bottom-width: 1px; border-left-width: 0px;
}
And this has the problem that you have a # too much in the border property.
Apart from that, the code looks fine to me.