Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #64970
    ATSUMI Saijo
    Participant
    Premium Member

    Hello, Ashe team Thank you for amazing theme!

    I want to know the CSS that changes the width of letter spacing and line height.


    @media
    screen and (max-width: 979px) {

    .post-content {

    letter-spacing: 0.1em !important;

    }

    }

    Is this nice try?

     

    #64986
    Duke
    Keymaster
    WP Royal Team

    Hi,

    Yes, it’s close but you need to add P tag there, here it is:

    @media screen and (max-width: 979px) {
    
    .post-content p {
    
    letter-spacing: 1.1em !important;
    line-height: 16px !important;/*remove this line if you don't want to control line height*/
    
    }
    
    }

    But you can control this from Customize >  Typography.

    Kind Regards

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