WordPress Themes, Plugins and HTML Templates › Forums › Dicot WordPress Theme › Change site-title font-size › Re: Change site-title font-size
Hello,
Please use the following CSS Code Snippet to tweak the Site Title Font size for the viewport 320×480
– Go to Appearance > Customize > Theme Custom CSS
– Use the following CSS Code Snippet
/* For Landscape */
@media screen and ( min-width: 360px ) and ( max-width: 599px ) {
.site-title {
font-size: 32px;
font-size: 3.2rem;
}
}
/* For Portrait */
@media screen and ( max-width: 359px ) {
.site-title {
font-size: 18px;
font-size: 1.8rem;
}
}[/CODE]
Thanks[CODE]/* For Landscape */
@media screen and ( min-width: 360px ) and ( max-width: 599px ) {
.site-title {
font-size: 32px;
font-size: 3.2rem;
}
}
/* For Portrait */
@media screen and ( max-width: 359px ) {
.site-title {
font-size: 18px;
font-size: 1.8rem;
}
}[/CODE]
Thanks