Hey there GodskR,
Hope you’re well today!
Please try adding the following CSS code in the style.css file of your child theme or if your theme doesn’t have custom CSS tab add it in your site using the following plugin:
http://wordpress.org/plugins/simple-custom-css
h1.site-title {
font-size: 3.6rem;
}
Note that this is the original font size of the site title. In order to change it you’ll have to increase/decrease the numeric value to what ever suits you the most. Hope this helps 🙂
Best regards,
Bojan
Thread Starter
GodskR
(@godskr)
Perfect – seems to work just perfect.
What code should i type if I want to make the title bold and maybe have it like this:
Lucky
Star
Louis
Thank you for all your help!
Hey there,
Please try replacing the above code with this one:
h1.site-title {
font-size: 6.6rem;
font-weight: bold;
width: 140px;
}
Font weight should make it bold and by reducing the width of the element you can display words under each other. Please let me know if this helps 🙂
Cheers,
Bojan
Thread Starter
GodskR
(@godskr)
Yes thank you.
It works fine!