Archived topic
Small text in one place only
6 replies · Started by Patrik on February 18, 2019
How do I get small text in one place only the right way? In the middle of a post for example. If I set 17 in the post but in one place would like 13 for example. :)
Hi there,
You can use HTML inline style like this:
Normal size part <span style="font-size: 13px;">small size part</span> normal size part again
More info here: https://www.w3schools.com/html/html_styles.asp
Thanks! :)
Can you change the color of links temporarily in the same way? :)
Yes.
This page shows some examples:
https://www.w3schools.com/html/html_links.asp
So CSS is correct even if you just want to change one link? :)
EDIT: Sorry it wasn't about the theme now - thought it would. :)
So this is correct? Don't put it under css?
<a href="/" style="color:#878787"></a>
Yup this isn't theme specific. Just HTML inline styles.
That should work. You can always just tested it out.