Change Font Size on Site Title, Tagline, and Home Page Buttons
The title pretty much explains it. How would you go about changing the font size on the site’s title, tagline and home page buttons?
Replies (1)
-
April 7, 2018 at 5:31 pm
The title pretty much explains it. How would you go about changing the font size on the site’s title, tagline and home page buttons?
-
April 9, 2018 at 5:25 am
Hi Brady,
You can use the CSS below to change these
/* for site title */
.slide-bg-section h1{
font-size: 35px;
}/* for site description */
.slide-bg-section p{
font-size: 14px;
}/* Home page buttons */
.slide-bg-section .read-more a, .slider .slider-button .read-more a{
font-size: 11px;
}You can change the px numbers according to your need
Copy and paste the above CSS in Appearance -> Customize -> Additional CSS
Regards