Archived topic
Little Help Again Post Headings
3 replies · Started by Mr McMarry on May 25, 2018
Heres the issue :
this is the Homepage so i want this heading in center which it is but i don't want headings centered In-Post

Hi Arish, the CSS you have for centering on mobile can be adjusted like so to just affect the blog / archive
@media (max-width: 768px) {
.blog .entry-title,
.archive .entry-title {
margin-bottom: 0;
margin-top: 10px;
text-align: center;
}
}
Another thing which is this : the long spaces between post text description :
https://drive.google.com/file/d/127p-aJlSYvYK54fkx3bJQZrBvrZEfeod/view?usp=drivesdk
Hi Arish, thats because of this CSS you have setting the text to justify:
.entry-content, .entry-summary {
text-align: justify;
}