@ bc
re: How do we change the font of gridder
For the most part, Gridder inherits the font used by the theme. to override the couple instances where it does not, add the following CSS to the theme’s custom CSS area:
#cn-gridder .cn-gridder-overlay {
font-family: inherit !important;
}
#cn-gridder .cn-gridder-contact span.email-address-block {
font-family: inherit !important;
}
Now the font family defined by the theme will be used in all parts of the template. If you want to change the font-family, you will need to use CSS to override that of which the theme sets. Whatever CSS that is, well, that really depends on the theme. Someth9ing like the following may or may not work:
#cn-gridder .cn-gridder-item {
font-family: cursive !important;
}
Of course you would change the font-family to you desired font.
re: pls note the shortcake to show the full biography does not work, how to fix this?
Please see the doc page. The Panel Excerpt section explains it in detail.
Hope that helps!
