Blog for the community

  • Issue description:

  • Link to the page with the widget in question:
    Can we make the blog have custom fonts and have a custom domain url?

1 Like

Hi there, @Ray_Giangiordano :waving_hand:

You can apply the same custom font to all widget’s elements using this code - Change font of all elements (Blog)

And here is the CSS code to change the font of all widget’s elements individually:

/* Post title in the card */

[class*="card-content__CardContentTitle"] {
font-family: Times New Roman;
}

/* Post description in the card */
[class*="card-content__ClampedTypography-sc"] {
font-family: Times New Roman;
}

/* Post title in the popup */

[class*="post__Title-sc"] {
font-family: Times New Roman;
}

/* Post description in the popup */

[class*="post__Header-sc"] > [class*="typography__Container-sc"]:not([class*="post__Title-sc"]) {
 font-family: Times New Roman;
}

/* Author name */

[class*="post__Author-sc"] > [class*="typography__Container-sc"] {
font-family: Times New Roman;

/* Post text in the popup */

.es-post-content {
 font-family: Times New Roman;
}

You’re welcome to set any other font, providing it is supported by your browser and added to your website.

As for the custom domain in the URL, do you mean a widget’s Share Link?

If this is the case, unfortunately, it’s impossible to set a custom domain there. However, this idea is already on the Wishlist and you can upvote it here - Customize share links.

If I misunderstood your idea, please specify the URL you mean :slightly_smiling_face: