Is there a way I can center align my header title just on mobile? Picture Below
Website: www.ecogarby.com
Pass: sss
Is there a way I can center align my header title just on mobile? Picture Below
Website: www.ecogarby.com
Pass: sss
hii, @Acid2Rain
Paste this code on top of the style.css file.
@media only screen and (max-width: 749px){
.caption-content.text-align-left {
text-align: center !important;
}
}
Thank You.
Hi @Acid2Rain ,
Go to Assets > styles.css and paste this at the bottom of the file:
@media only screen and (max-width: 480px){
.image-with-text-overlay__banner .caption-content {
text-align: center !important;
}
}
Hope it helps!
@Zworthkey Thank you so much!!!
Hi @Acid2Rain ,
Not spam, but with my code, it works better. because when you use max-width: 749px, it may not work well with a screen below 749px, when the caption is still above the image.
Just a suggestion to check.
Thank you.
@LitExtension Thank you!! I’ll be using the code you provided
Much appreciated!