Add an addition text under the subtitle
-
Hi
How to add an addition text under the subtitle with out affecting on the subtitlethanks
The blog I need help with is: (visible only to logged in users)
-
Hi there,
Are you trying to add text just below the site’s tagline? If so, you can add the following to the CSS panel of the WordPress.com Customizer:
.site-description:after { content: "Example"; display: block; }Change Example in the above snippet to the text you’re after.
Let me know if that’s helpful or if you have any extra questions.
-
-
I can see that you’ve already adding A at the points you wish to insert a new line in your CSS. For this to work as intended, you’ll also need to add white-space: pre-wrap; to your CSS:
.site-description:after { content: "First line. A Second line."; display: block; white-space: pre-wrap; }Hope that helps!
- The topic ‘Add an addition text under the subtitle’ is closed to new replies.