/ all snippets

Add Drop Cap on Post Content Widget

This CSS snippet adds a drop cap on the Post Content Widget of Elementor

If you don't have Elementor Pro, you can replace the prefix of "selector" with a CSS class you can define yourself. To add the CSS snippet, you can use the HTML widget.

selector::first-letter{
    font-size: 4em;
    font-weight: bold;
    margin-right: 8px;
    float: left;
    line-height: 1;
}