Custom CSS code examples
Logo Font Size #
add below code in Customizing ▸ Additional CSS for changing Logo Font Size
/**Px-Lab Support: Logo font size **/
/** for mobile **/
.branding .site-title {
font-size: 25px; /** change it what you want **/
}
/** for desktop/tablet **/
@media screen and (min-width: 480px) {
.branding .site-title {
font-size: 32px; /** change it what you want **/
}
}