Hello how can I make text size bigger on like a paragraph like for example I just need one paragraph to be size 18 on the letters. Can that be done without having the text get bigger across the whole website any code that I can use that won’t go inside css maybe like just on the paragraph code.
Hey highland12,
You can’t set that individually in the theme options unfortunately, but if you add a class like this to Quick CSS:
.paragraph-18 {
font-size: 18px;
}
Then you can add that class to your paragraph, like so:
<p class="paragraph-18">This text is 18 pixels</p>
Best regards,
Rikard