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 **/
}
}

Add some gap between menu and post strip #

add below code in Customizing ▸ Additional CSS for adding gap between menu and post strip

.bb-featured-strip {
     margin-top: 1.875rem;
}