ETModules Icon Cheatsheet

by | Aug 23, 2021 | Business | 0 comments

Here’s a short cheatsheet of Elegant Theme’s Divi icons:

 
/************************************ MENU ICONS **********************************/
 /*** QUOTE MARKS ***/ .et-icon-1 a:before { content: "\7c"; }
 /*** CLOCK FACE ***/ .et-icon-2 a:before { content: "\7d"; }
 /*** CLOSED PADLOCK ***/ .et-icon-3 a:before { content: "\7e"; }
 /*** KEY ***/ .et-icon-4 a:before { content: "\e001"; }
 /*** CLOUD ***/ .et-icon-5 a:before { content: "\e002"; }
 /*** LANDSCAPE IMAGE ICON ***/ .et-icon-6 a:before { content: "\e005"; }
 /*** LIGHTBULB ***/ .et-icon-7 a:before { content: "\e007"; }
 /*** CAMERA ***/ .et-icon-8 a:before { content: "\e00f"; }
 /*** ENVELOPE ***/ .et-icon-9 a:before { content: "\e010"; }
 /*** CREDIT CARD ***/ .et-icon-10 a:before { content: "\e014"; }
 /*** SHOPPING CART ***/ .et-icon-11 a:before { content: "\e015"; }
 /*** LOCATION PIN ***/ .et-icon-12 a:before { content: "\e01d"; }
 /*** CALENDAR ***/ .et-icon-13 a:before { content: "\e023"; }
 /*** CONTACTS BOOK ***/ .et-icon-14 a:before { content: "\e026"; }
 /*** HEART ***/ .et-icon-15 a:before { content: "\e030"; }
 /*** COFFEE CUP ***/ .et-icon-16 a:before { content: "\e105"; }
 /*** WALLET ***/ .et-icon-17 a:before { content: "\e100"; }
 /*** BRIEFCASE ***/ .et-icon-18 a:before { content: "\e0fe"; }
 /*** STAR ***/ .et-icon-19 a:before { content: "\e031"; }
 /*** HOME ***/ .et-icon-20 a:before { content: "\e009"; }
 /*** LINK CHAIN ***/ .et-icon-21 a:before { content: "\e02c"; }
 /*** LIKE THUMBS UP ***/ .et-icon-22 a:before { content: "\e106"; }
 /*** HOURGLASS ***/ .et-icon-23 a:before { content: "\e0e1"; }
 /*** PIE CHART ***/ .et-icon-24 a:before { content: "\e029"; }
 
}
/************************************* END *****************************************/

Here’s what they look like:


Here’s a problem I had: I was encountering CORS errors when trying to load a font from a WordPress site. What are the best ways to resolve this cross-origin font loading issue?

These errors are related to Cross-Origin Resource Sharing (CORS) and typically occur when a web page tries to load a resource (in this case, a font file) from a different domain. Here are some approaches to address these issues:

  1. Server-Side Solutions (Recommended):
    • The website owner should configure their server to send appropriate CORS headers
    • For a WordPress site using the Divi theme, this typically involves adding headers in the .htaccess file or through server configuration
  2. Browser Extension Workarounds:
    • Temporarily disable CORS restrictions using browser extensions like “CORS Unblock” or “Allow CORS” for testing
    • Note: This is only for development and should not be used in production
  3. Proxy Solution:
    • Set up a proxy server that adds the necessary CORS headers
    • Use a service like CORS Anywhere or create your own proxy
  4. Local Workaround:
    • Download the font file and host it locally on your own server
    • Update the font source in your CSS to point to the local file
  5. Web Font Alternative:
    • Use a web font service like Google Fonts that handles cross-origin issues
    • Replace the problematic font with a similar web font

The best long-term solution is for the website owner to properly configure CORS headers on their server. If you’re the website owner, you would typically add something like this to your .htaccess file:


<IfModule mod_headers.c>
<FilesMatch "\.(woff|woff2)$">
Header set Access-Control-Allow-Origin "*"
</FilesMatch>
</IfModule>

Give Marketers A Perk: A Marketing Job WITHOUT Website Management

With all of the talk of workplace overload and the heavy job requirements, taking something off of a marketer’s plate provides two big wins: it give the marketer more breathing room to accomplish the important things in their job; and it offers the business owner some continuity on the public face of their brand– their website. Here’s our exhaustive list of ways a WordPress maintenance plan can help a marketer do their job better.

The Juggling Act of Priorities for a WordPress Developer

Being a WordPress developer is akin to performing a delicate juggling act. With numerous tasks requiring attention, from translating visual designs into functional websites to ensuring optimal performance and security, managing priorities becomes crucial. We put a lot of effort putting together an in-depth look at how a WordPress developer can effectively balance these responsibilities.

SEO In the World of Artificial Intelligence

Getting An Audience via Search Engine Optimized Content There's a new sheriff in town. Its name is "Search Generative Experience." For a while now, Google has been moving from being the world's biggest index of web pages do being the destination unto itself. Its...

Stripe vs Square vs Paypal

Here’s a quick rundown of these three major ecommerce providers and how they compare to each other. In my 25+ years of ecommerce rollouts, I have dealt with Stripe, Square and Paypal implementations as well as deployments with other providers like Authorize.net, Beanstream (WorldPay), Moneris and others. I really think the three in this article can satisfy most use cases.

Five Tips For AI In Content Creation

There’s a lot to consider about the practical aspects of creating content with AI but also the creative collaboration between human intelligence and artificial intelligence.

Understanding CSS Media Queries

CSS media queries are a powerful tool that allow you to apply different styles based on the characteristics of the device or viewport. They enable you to create responsive designs that adapt to different screen sizes, resolutions, and device types (desktop, tablet, mobile, etc.).

Spring into 2024: 30 Great Backlink Sources

Creating backlinks, which are links from one website to another, is a fundamental aspect of search engine optimization (SEO). They act as a "vote of confidence" from one site to another, indicating to search engines that the content is valuable, credible, and useful....

Getting More from Your CRM: Integrating GlueUp with WordPress

Customer relationship management (CRM) systems like GlueUp are invaluable for managing contacts, deals, and business relationships. However, the data in these systems often remains locked away, unseen by your wider customer base. Integrating your CRM with your...

Empowering Legal Advocacy Through Digital Solutions

In an era where digital presence is crucial, Web321 stands at the forefront of offering custom web solutions tailored for groups embarking on legal advocacy, particularly those initiating or involved in class-action lawsuits. Our expertise caters to the unique needs...

What’s the Deal With Quality Content?

What makes content high-quality? When it comes to content marketing, quality goes beyond surface metrics like word count or citations. True quality lies in how well content achieves its purpose and connects with readers. Does it align with marketing goals? Resonate...

Turning Off The AI Bar on Divi

Divi (the theme system from Elegant Themes) has added an AI tool. Some people don’t like it. With the most recent copy of Divi, the element can be switched off.