Icon Box Block – Insert your favorite icon with customization and design
🤝 See Demos 🤝 Ever find yourself wanting a simple, clean way to showcase features or services on your site? The Icon Box block is just for that. It’s a straightforward block for the Gutenberg editor that lets you pair a stylish icon inside a fully customizable box. Our goal was to make it incredibly flexible without overwhelming users with options. You can build beautiful, professional-looking sections with the Icon Box that fit your site’s look and feel perfectly. The Icon Box plugin is for: Showcasing Your Core Services: Instead of a boring bulleted list, you can create a visually engaging grid of your company’s services, each with a relevant icon, making it easier for customers to understand what you do at a glance. Highlighting Key Product Features: On a sales or product page, use icon boxes to break down features (e.g., “Long Battery Life” with a battery icon, “Encrypted” with a shield icon) to make them easily scannable and digestible for potential buyers. Creating a “Why Choose Us?” Section: Quickly communicate your main value propositions. Pair an icon with a benefit like “24/7 Support,” “Free Shipping,” or “Expert Team” to build trust and convince visitors. Illustrating a Step-by-Step Process: Visually guide users through a process, such as a “How it Works” section. For example: (1) Sign Up, (2) Create Your Profile, (3) Go Live! Each step is clearer with its own icon. Making Contact Information More Engaging: Organize your phone number, email, and physical address into clean, separate boxes, each with a recognizable icon. It’s much more user-friendly than a simple line of text. Summarizing Key Takeaways in an Article: Break up long blog posts or articles by using icon boxes to summarize the main points or benefits, helping to improve reader engagement and information retention. Download the Icon Box plugin today and take your website to the next level! 🌟 Unlock More Flexibility! Use the Blocks to Shortcode plugin to **convert any blocks into shortcodes and embed them anywhere! 🚀** Key Features (Free) 👉 Icon Libraries: Import your favorite icons from built-in Font Awesome and Bootstrap libraries with ease. 👉 Colors & Interactivity: Apply normal and hover colors to your icons to match your website’s color scheme. 👉 Responsive Layout: Adjust icon size, box width, height, and alignment natively for desktop, tablet, and mobile. 👉 Advanced Spacing: Granular controls for padding and margin to ensure perfect positioning within your layout. 👉 Design Frames: Add stylish backgrounds (Solid/Gradient) and border frames to your icon boxes. 👉 CSS Transforms: Add Scale, Rotate, Skew, and Translate effects to create interactive designs. 👉 Layer & Visibility: Control basic Z-Index, Opacity, and visibility for better element management. Pro Features 🚀 Custom Image Icons: Upload your own image files (PNG, JPG, WebP) to use as unique and high-quality icons. 🚀 Advanced Image Fitting: Professional object-fit controls (Cover, Contain, Fill) for perfect custom icon display. 🚀 Independent Dimensions: Unlink width and height to create flexible non-square icon shapes and designs. 🚀 Icon Shadow: Create complex, multi-layer shadow effects for icons and containers. 🚀 Responsive Order: Take full control of your layout by reordering elements on different devices. 🚀 Background Filters: Create stunning eye-catching effects by applying dynamic backdrop filters like blur and saturation. 🚀 Advanced Overlays: Go beyond simple colors with overlay blend modes and backdrop filters for Glassmorphism effects. 🚀 Advanced Transformation: Create continuous, looping animations like pulsing or floating effects with infinite transforms. 🚀 Advanced Scroll Animations: Fine-tune every aspect of your scroll animations, including offset, mirroring, and custom easing. 🚀 Custom Cursors: Enhance user experience with a wide range of custom browser cursors for any element. 🚀 Custom Attributes: Add any HTML attribute to your blocks for enhanced functionality and third-party integrations. How to use Icon Box Begin by installing the Icon Box plugin. Add the Icon Box block from the Media block category within the Gutenberg Editor. Customize block settings from the settings sidebar on the right. Enjoy! For installation assistance, click on the Installation tab. Feedback Was this plugin useful to you? Or do you have any concerns? Have a feature request? Send us your feedback Third-Party Libraries Freemius SDK Source: https://freemius.com/ GitHub: https://github.com/Freemius/wordpress-sdk License: GPLv3 – https://github.com/Freemius/wordpress-sdk/blob/master/LICENSE.txt Purpose: Provides opt-in usage tracking and analytics to help improve the plugin. AOS (Animate On Scroll) Source: https://michalsnik.github.io/aos/ GitHub: https://github.com/michalsnik/aos License: MIT – https://github.com/michalsnik/aos/blob/master/LICENSE Purpose: Provides smooth scroll animation effects for blocks on the frontend.
Top keywords
- icon22×2.96%
- box9×1.21%
- github7×0.94%
- icon box7×0.94%
- custom6×0.81%
- effects6×0.81%
- https6×0.81%
- advanced5×0.67%
- block5×0.67%
- com5×0.67%
- icons5×0.67%
- add4×0.54%
JVM Rich Text Icons
Add icons to any rich text field in the WordPress block editor. Insert icons inline in paragraphs, headings, lists, buttons, or use the dedicated single icon block. Features Icon picker – Select icons from a searchable popup in the block editor toolbar. Font Awesome included – Ships with Font Awesome 4.7, 5.x and 6.x. Choose your preferred version from the settings. Custom SVG icon set – Upload your own SVG icons via a drag & drop uploader in the plugin settings. This is the recommended approach for the best performance. Single icon block – A dedicated block with font size, color, alignment and spacing options. Supports Pattern Overrides (WordPress 6.9+), so the icon and its color can be customized per instance when the block is used inside a synced pattern. ACF integration – Adds a “JVM Icon” field type for Advanced Custom Fields. See it in action How it works Pick an icon from the toolbar while editing any rich text field. The plugin inserts a small HTML tag that gets styled by the chosen icon set. Why use a custom SVG icon set? When you use a custom SVG icon set, the plugin defaults to inline SVG rendering. This is a great choice for performance! Google PageSpeed Insights will thank you. Better page speed – No render-blocking CSS or font files to download. Icons are part of the HTML itself. Only loads what you use – Unlike Font Awesome which loads CSS for hundreds of icons, inline SVG only includes the icons that are actually on the page. No external requests – Everything is served inline, so there are no extra HTTP requests for font or CSS files. Inherits text color – Icons automatically use the surrounding text color, no extra CSS needed. Fully reversible – The stored content in the database is not modified. You can switch between render technologies at any time from the plugin settings if you want to. Alternative render technologies (CSS masks, ::before / ::after pseudo-elements) are also available for custom SVG icons if your use case requires it. For developers The plugin provides several filter hooks to customize its behavior. You can load your own icon set, CSS file, or change the icon class prefix. Load a custom icon set file add_filter( 'jvm_richtext_icons_iconset_file', function($file) { return get_stylesheet_directory() . '/path_to_my/icons.json'; }); Load a custom CSS file add_filter( 'jvm_richtext_icons_css_file', function($cssfile) { return get_stylesheet_directory_uri() . '/path_to_my/cssfile.css'; }); To disable the default CSS file entirely: add_filter( 'jvm_richtext_icons_css_file', '__return_false'); Change the icon class prefix add_filter( 'jvm_richtext_icons_base_class', function() { return 'my-custom-css-class-name'; }); Disable the settings screen add_filter( 'jvm_richtext_icons_show_settings', '__return_false'); Please note that if you are loading a custom icon set with the plugin hook: jvm_richtext_icons_css_file, you should make sure the plugin is not set to My SVG uploads as this setting does not load any CSS file.