Post Title / Subtitle / Date width/margin adjustments

Posted in: Newspaper
Post count: 36

I am trying to match my post title/subtitle/date with my post-content — I currently have all of my post content at a customized width.

For non-mobile:
.td-post-content p{
width: 65%;
margin-left: auto;
margin-right: auto;
}

For mobile:
.td-post-content p{
width: 90%;
font-size: 14px;
line-height: 28px;
margin-left: auto;
margin-right: auto;
}

How do I make it so my post title/subtitle/date can match that? (65% on non-mobile, 90% on mobile)

Here’s an example article from my website:

http://wuche.gg/dota2/top-tip-how-to-find-your-signature-scent-this-spring-3/

Thanks!

Post count: 22421

Hello,

We do not recommend altering the theme width. If you want to have more narrow posts you can try to center the meta info for the post like so:

.td-post-title{
text-align: center;
}
.td-module-meta-info{
margin-left: auto;
margin-right: auto;
display: table;
}

Thank you!

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.