Remove the border of check box field

Remove the border of check box field

Paul Young發表於
Number of replies: 3

Dear all,

Is there anyway to remove the border of the check box field? See picture below. Thanks!

評比平均分數: -
In reply to Paul Young

Re: Remove the border of check box field

Frank Ralf發表於
Hi Paul,

Try using Firebug to find and change the CSS responsible for that element. It might be a fieldset element.

CSS FAQ and Themes FAQ are good starting points for learning more about CSS and theming.

hth
In reply to Frank Ralf

Re: Remove the border of check box field

Frank Ralf發表於
Here's a screenshot taken from the database activity on http://demo.moodle.net/mod/data/edit.php?d=2

附件 Database activity fieldset border.png
In reply to Frank Ralf

Re: Remove the border of check box field

Paul Young發表於

The problem was solved by adding the following in the CSS template:

fieldset{
border: none;
}

Thank you very much for your help!