Hello,
I am wondering how I can fix my featured blog title in the mobile view? It is fine on the desktop view. https://www.emmehair.ca/blogs/10-essential-hair-care-tips-for-every-hair-type
Hello,
I am wondering how I can fix my featured blog title in the mobile view? It is fine on the desktop view. https://www.emmehair.ca/blogs/10-essential-hair-care-tips-for-every-hair-type
You can adjust the page title as you wish with custom CSS code. If you want it to appear this way only on mobile devices, use the following code:
@media only screen and (max-width: 768px) {
h2 {
font-size: 14px;
}
}
This code will adjust the font size of the
Hi @vgomes , kindly use the below instructions and code.
@media only screen and (max-width: 750px) {
h2 {
font-size: 16px;
}
}
If my reply is helpful, kindly click like and mark it as an accepted solution.
Thanks!
Thank you. Where do I put that code?