Hi, how can you change the size of the site title? On the mobile version the title is too big to fit on one line and it crosses over.
1 Answers
Hi,
To resolve this issue, you can add the following code to the style.css file:
@media (max-width: 767px) {
.site-title {
font-size: 20px;
}
}
Hope this helps !
Please login or Register to submit your answer