Site logo

Archived topic

increase the size of the first letter at the beginning of the paragraph

1 reply · Started by steven on August 9, 2022

Viewing posts 1–2 of 2

Hi there ,

How i can increase the size of the first letter at the beginning of the paragraph

https://ibb.co/w6BJg9b

Hi there,

in CSS there are :pseudo classes, some of which we can use here.

1. :first-letter
This allows us to style the first-letter of a text element eg.

p:first-letter {
    font-size: 24px;
}

This will apply to ALL paragraphs.

2. :first-of-type and :first-letter

p:first-of-type:first-letter {
    font-size: 24px;
}

This will apply to the first letter of the first paragraph.

You can make this more specific eg. only apply to the Single post:

.single-post p:first-of-type:first-letter {
    font-size: 24px;
}

3. Custom Class and :first-letter
Create your own custom class eg.

.dropcap:first-letter {
    font-size: 24px;
}

Then select the text block and in Advanced > Additional CSS Classes add: dropcap

This archived topic is closed to new replies.