Tagged: special heading
Hey marcoabis81,
Does it center on the front-end?
Could you please give us a link to your website, we need more context to be able to help you.
Best regards,
Victoria
Hi Victoria.
On the desktop is fine, on mobile it aligns on the left.
This is the website, http://www.ninserviziogratuito.co.uk
This is the home page, scroll all down and you’ll see it..
Hi,
Thanks for the link, the reason your sub-title is not centered on mobile is because of this custom css in your child theme stylesheet:
/* Allineamento testo solo per desktop */
@media (max-width: 768px) {
p {text-align: left;}
}
You could remove this to correct it, but I assume you want this for your text blocks, so please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:
@media only screen and (max-width: 768px) {
.av-subheading p {
text-align: center!important
}
}
Best regards,
Mike