04/05/2016 at 9:39 am
#371713
Keymaster
@ James
re: 1. How do I make the font smaller and not bold)
2. How do I remove the + on every word?
This can only be done with custom CSS to override the template’s default styling. Add the following to the theme’s custom CSS area:
#cn-gridder .cn-gridder-overlay span.fn, #cn-gridder .cn-gridder-name span.fn {
font-size: 12px !important;
font-weight: normal !important;
}
#cn-gridder .cn-gridder-toggle.cn-gridder-toggle-top-right {
display: none !important;
}
Hope that helps!