How to remove bullets between field values

From JReviews Documentation
Revision as of 14:53, 27 July 2013 by Jreviews (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

To remove the bullets between field values for all custom fields, add this code into custom_styles.css file in your theme:

ul.jrFieldValueList 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:

.jrFieldname ul.jrFieldValueList li:after {
    content:'';
    padding:0;
}

replace jrFieldname with the name of your custom field. For example, if the field name is jr_brand, use jrBrand in css.