Hi,
I have the font size set to this for my Portfolio Grid
#top .grid-content h3{
font-size:18px;
text-align: center;
}
I tried doing this for mobile but it still showing extremely small on mobile devices.
@media only screen and (min-width: 768px) and (max-width: 1023px) {
#top .grid-content h3{
font-size:18px;
text-align: center;
}
}
@media only screen and (min-width: 1024px) and (max-width: 1439px) {
#top .grid-content h3{
font-size:18px;
text-align: center;
}
}
How can I change the title font size on mobile devices?
Thanks!
Hey MikeTandySwag,
Could you post a link to where we can see the element in question please?
Best regards,
Rikard
Yup! Put it in private content
Hi,
Thank you for the update.
You may need to adjust the breakpoint in the css media query above to target smaller screens. Please try this css code.
@media only screen and (max-width: 767px) {
/* Add your Mobile Styles here */
#top .grid-content h3 {
font-size: 32px;
text-align: center;
}
}
Best regards,
Ismael