I would like to add a space between the checkbox and the text to the right of the check box.
<li><input type="checkbox" name="zoom_cat[]" value="-1" checked="checked"> All</input></li>
I was able to add the space for the default []All by modifying the language file.
I added
STR_FORM_CATEGORY_ALL= All
this worked for the default All category, but I would like to add a space to all my categories.
How can I do this?
<li><input type="checkbox" name="zoom_cat[]" value="-1" checked="checked"> All</input></li>
I was able to add the space for the default []All by modifying the language file.
I added
STR_FORM_CATEGORY_ALL= All
this worked for the default All category, but I would like to add a space to all my categories.
How can I do this?
Comment