Home › Forums › Support › Justify text post only indesktop This topic has 1 reply, 2 voices, and was last updated 3 years, 3 months ago by Ying. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts March 9, 2023 at 2:54 pm #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; } March 9, 2023 at 5:05 pm #2562225 YingStaff 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; } } Author Posts Viewing 2 posts - 1 through 2 (of 2 total) You must be logged in to reply to this topic. Log In Username: Password: Keep me signed in Log In