PDA

View Full Version : How do I change this Border size and color?


wobbly
06-07-2008, 09:37 AM
Just a quick question as i'm pulling my hair out trying to find the correct attribute to edit.

How would I alter the following border color and size?

http://www.gorlangamers.co.uk/images/colour.jpg

Any help would be appreciated.

Attitude5ire
06-07-2008, 10:37 AM
Might be wrong but looks like fieldset.
try
fieldset {
border:0
}
in css. If thats the one jus do
border:1px solid #whatever color.

wobbly
06-07-2008, 02:11 PM
Thanks for the reply.

This is all I have in regards to fieldset in my sytle additional css.

/* ***** define margin and font-size for elements inside panels ***** */
.fieldset { margin-bottom: 6px; }
.fieldset, .fieldset td, .fieldset p, .fieldset li { font-size: 10px; }

what would I need to adjust there?

Many thanks for the help in advance.

Brueskie
06-07-2008, 02:20 PM
Try adding the fieldset code given by Attitude5ire to your Extra CSS definitions. It is important that you use "fieldset" and not ".fieldset".

wobbly
06-07-2008, 07:44 PM
Many thanks, that did the trick :)