Add the following to the theme’s custom CSS area found in the Customizer. #cn-tile-plus .cn-entry .fn { font-size: 16px } #cn-tile-plus .cn-entry { font-size: 14px; } If you increase the font size, you will likely also need to increase the tile size. To learn how, please see this FAQ.
If you are receiving the error message instead of a Google Map then you need to set your Google Maps API Browser and Server keys. To learn how, please refer to the Get Google Maps API Keys tutorial.
Absolutely! You can switch templates as often as you wish, your entries will be intact. Think of templates for Connections like themes for WordPress. The primary purpose of a WordPress theme is to change the visual style of your site. The primary purpose of Connections’ templates, just like WordPress themes, is to change the visual …
This is likely being caused by the theme including a “buggy”, in my opinion, HTML5 shim script. The purpose of these shim scripts is to enable HTML5 features in browsers that do not support them. They work pretty well … but, there seems to be a bug in this shim script. When you click on a …
There are primarily two reasons this issue occurs: When copy-pasting the shortcode into a page or post while using the rich text editor (the Visual tab), HTML tags will also be pasted. The solution is to paste the shortcode into the HTML editor (the HTML tab) or use the “Paste as Plain Text” button in …
I get the following error, what does it mean? The package could not be installed. The theme is missing the style.css stylesheet. If you are trying to install a Connections template as a theme you will receive this error. Connections templates must be installed as a plugin. Please following the template installation instructions found here: …
The image can be hidden by using the image_fallback template shortcode option. NOTE: Functionally, this only disables the image placeholder when an image has not been uploaded to an entry. What this means is if you upload an image to an entry, it will still be displayed. /* * Example * If there is no image …
There are two ways to change the image size. The best way is to change the setting on the Connections : Settings admin page for the ‘Medium, Image Settings’. You would set the height and width to the template recommended size. The recommended image size can be found on the template product page under the ‘Recommended …
Every string in a template can be customized to suit your specific needs. This can be done by setting template-enabled shortcode options. These string shortcode options all begin with “str_”. Every template differs on what strings are available to be customized; please refer to the template’s documentation [currently under construction] to learn more. But here …
The default dimensions of the Tile template are 240px x 150px. Tile enables two shortcode options to control the card dimensions. They are card_width and card_height. Examples: /* * Example 1 * Change both the height and width. */ [connections card_width=300 card_height=175] /* * Example 2 * Change just the width. */ [connections card_width=300] /* …