Recent Topics

1 Jun 16, 2006 15:08    

Hello Crowd, I just walked into a stupid problem testing around checkboxes with the categories. (0.9.2, skin based on skin "plain")

In IE checkboxes are surrounded by borders, and I can't seem to make them go away! 8| In my .CSS I tried declaring:

input[type=checkbox], input.checkbox, .checkbox {
	border: none;
}


but that didn't mend it. If anyone knows the right way to make them disappear, please let me know! Thank you! :)

'lex

2 Jun 16, 2006 17:07

found the solution.
In _categories.php find where it says something like

        if( $cat_line_checkbox )
        {
            echo '<label><input type="checkbox" name="catsel[]" value="'.$cat_ID.'"';


and alter that to

        if( $cat_line_checkbox )
        {
            echo '<label><input type="checkbox" style="background-color:transparent; padding:0px; margin:0px; border:0px;" name="catsel[]" value="'.$cat_ID.'"';


The borders are gone. Cheerio.


Form is loading...