Quote:
Originally Posted by AndrewD
I think your css definition for .fieldset needs the 'solid' keyword.
ie
Code:
/* ***** define margin and font-size for elements inside panels ***** */
.fieldset { margin-bottom: 6px; border: 1px #322723; }
.fieldset, .fieldset td, .fieldset p, .fieldset li { font-size: 10px; }
should be
Code:
/* ***** define margin and font-size for elements inside panels ***** */
.fieldset { margin-bottom: 6px; border: 1px solid #322723; }
.fieldset, .fieldset td, .fieldset p, .fieldset li { font-size: 10px; }
|
Already tried this as well

someone over at vBulletin.com suggested it and it wouldn't work.matter in fact the only way i could get it to work even on the main forums was by adding the fieldset.css to the vbulletin_editor.css file.When i add the fieldset to the additional css options it doesnt seem to have any effect on the forums at all no matter what way i put it in.
I have tried-
".fieldset { margin-bottom: 6px; border: 1px solid #322723; }"
"fieldset { margin-bottom: 6px; border: 1px solid #322723; }"
".fieldset { margin-bottom: 6px; border: 1px #322723; }"
".fieldset { margin-bottom: 6px; border-color: 1px solid #322723; }"
".fieldset { margin-bottom: 6px; border: 0px solid #322723; }"
These were the suggestions i got from vB.com forums as i couldn't get a response here at vB.org

but i'm just stumped on this.