-
bsrvt6
Hi there,
How can I make justify-content in a blog? it’s a self-handside at the moment and I want my all blog content to Justify.
https://www.bestreview.au/2022/10/26/expedita-voluptas-illo-officia-nihil-et/Thanks
-
Hi there,
Sorry I’m not what you meant by
justify-content
?
https://developer.mozilla.org/en-US/docs/Web/CSS/justify-contentCan you provide an example?
-
bsrvt6
there is an option in to how to keep the content in a blog like left, right, or center and fourth is justify option to make blog content Parlle from both sides. You can see blog content in this blog has Justify https://www.bestreview.co.nz/best-baby-monitors-nz/
and Blog on this page is on left side https://www.bestreview.au/2022/10/26/expedita-voluptas-illo-officia-nihil-et/
So the question is how can make this https://www.bestreview.au/2022/10/26/expedita-voluptas-illo-officia-nihil-et/ how to make content Justify what is setting. In blog there is only right, left and center option
-
Hi there,
I checked the link you attached, it returns a 404 message.
But I checked your other posts, it looks like the content text is already justified by a piece of CSS:
https://app.screencast.com/uwYDqutAhIAunLet me know if I miss anything 🙂
-
bsrvt6
Hi there,
I have added CSS, But there is any way to Justify content only on particular post or post level
Thanks
-
To targtet a specific post, you would need to include the post ID:
.single.postid-1268 .entry-content { text-align: justify; }
To target all single posts, this would work:
.single .entry-content { text-align: justify; }
Hope this helps.
- You must be logged in to reply to this topic.