Difference between revisions of "How to remove bullets between field values"
From JReviews Documentation
(Created page with "To remove the bullets between field values for all custom fields, add this code into custom_styles.css in your theme: <source lang="css"> ul.fieldValueList li:after { conten...") |
|||
Line 1: | Line 1: | ||
− | To remove the bullets between field values for all custom fields, add this code into custom_styles.css in your theme: | + | To remove the bullets between field values for all custom fields, add this code into custom_styles.css file in your theme: |
<source lang="css"> | <source lang="css"> |
Revision as of 20:24, 24 July 2011
To remove the bullets between field values for all custom fields, add this code into custom_styles.css file in your theme:
ul.fieldValueList li:after { content:''; padding:0; }
If you only want to do that for a certain custom field, add the field name in front like this:
.jr_fieldname ul.fieldValueList li:after { content:''; padding:0; }
replace jr_fieldname with the name of your custom field.