Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1112604

    Hi,
    I have noticed that the subtitle of the special heading does not centre. How can I do that?

    This is how it looks it is not nice.

    2019-06-22_1827

    Thanks,
    Marco

    #1112642

    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

    #1112648

    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..

    #1112675

    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

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.