Site logo

[Support request] Justify text post only indesktop

Home Forums Support [Support request] Justify text post only indesktop

Home Forums Support Justify text post only indesktop

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #2562148
    pedro paulo

    Hi folks,

    I currently have the content of the posts justified, but I would like to keep it that way only in the desktop version. For mobile I would like to keep the right alignment.

    Today I am using the following CSS for this:

    .entry-content p {
    text-align: justify;
    }

    .entry-content li {
    text-align: justify;
    }

    #2562225
    Ying
    Staff
    Customer Support

    Hi there,

    You can add a media query to your CSS like this, so it only works when the screen width is at least 1025px.

    @media(min-width: 1025px) { 
    .entry-content p {
    text-align: justify;
    }
    
    .entry-content li {
    text-align: justify;
    }
    }
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.