Archived topic
Justify text post only indesktop
1 reply · Started by pedro paulo on March 9, 2023
Viewing posts 1–2 of 2
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;
}
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;
}
}
This archived topic is closed to new replies.