Quote:
Originally Posted by bhxtyrant
alright i just took some screen shots of the admin CSS stuff.Here is the images hope they will do  don't know any other way to show you the CSS.
 
Additional CSS-
and my CSS for vbulletin_editor.css is as follows
|
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; }