Safari text box restyling
This is just a little styling tip for those which do not like the textbox resizing which is present in the Safari browser. To stop the box permitting resizing across your page just put this into your css style sheet. It does make for a better user experience for the 68 classifieds type application
textarea { resize:none; }
Notice there is no . or # in front of it.
In addition, you may need to replace for this in each of your style sheets if you are using TemplateCodes Neo 3 column templates.
#form label {
clear:both;
color:#333333;
display:block;
float:left;
font-size:11px;
font-weight:bold;
line-height:22px;
padding:0 5px 0 0;
text-align:right;
width:180px;
}
|