Quote:
Originally Posted by Infopro
On your main CSS page at bottom in first box is the legend CSS section. Add whatever you like there.
|
Adding padding or margin space to the <legend> CSS section does nothing. But, to do what I wanted you must go to (thanks to Jake Bunce (part of the vBulletin team)):
Admin CP -> Styles & Templates -> Style Manager -> Main CSS (in the menu) -> Additional CSS Definitions (at the bottom)
And replace this code:
Code:
/* ***** define margin and font-size for elements inside panels ***** */
.fieldset { margin-bottom: 6px; }
.fieldset, .fieldset td, .fieldset p, .fieldset li { font-size: 11px; }
With this code:
Code:
/* ***** define margin and font-size for elements inside panels ***** */
.fieldset { margin-bottom: 6px; padding: 15px; }
.fieldset, .fieldset td, .fieldset p, .fieldset li { font-size: 11px; }
That's what I wanted, just came to update this post with how to do it if anyone else has the same problem. Again, thanks to Jake Bunce for the help.
Regards,
Andre R