Tagged: icon flipbox
Hey,
I’m using the icon flipbox. I wan’t the icons to be 2x bigger. Is that possible?
Hey spitsdesign,
Thank you for the inquiry.
Have you tried adjusting the Icon Font Sizes in the Styling > Font Sizes panel? Please check the screenshot below:
Best regards,
Ismael
Hi Ismael,
I know. 50px is the maximum size. Is it possible to make the icons bigger?
Hi,
Thank you for the update.
We can create a copy of enfold/config-templatebuilder/avia-shortcodes/icongrid/v50/icongrid.php and override the default settings. Please add this code to the functions.php file:”
add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
function avia_include_shortcode_template($paths)
{
$template_url = get_stylesheet_directory();
array_unshift($paths, $template_url . '/shortcodes/');
return $paths;
}
In the child theme directory, create an icongrid.php file inside the folder shortcodes/icongrid, then use this code:
// https://pastebin.com/1YfZfFfQ
This should increase the Icon Font Size selection to 200px.
Best regards,
Ismael