Archived topic
How do I change the line length of my paragraphs?
25 replies · Started by RJ on March 14, 2018
I'm still not seeing my CSS being added here unfortunately: https://generatepress.com/forums/topic/how-do-i-change-the-line-length-of-my-paragraphs/#post-521705
I also still see caching plugin activated. Disabling the caching plugin shouldn't mess up the appearance of the website.
Where are you adding the CSS? are there any other CSS above the one I provided?
Sorry about that Leo. I have disabled caching but still nothing happens.
I have added the script to Appearance > Customise > Additional CSS.
Hope that helps?
Sorry I just noticed my mistake in the code.
It's fixed now: https://generatepress.com/forums/topic/how-do-i-change-the-line-length-of-my-paragraphs/#post-521705
Wonderful Leo. That worked! Thanks so much for all your help. Appreciated.
Best, Robin
No problem!
How do I modify this which adjusts my POSTS:
@media (min-width:769px) {
.single.separate-containers .inside-article {
padding-top: 75px;
padding-left: 125px;
padding-right: 125px;
}
}
to make my PAGES look the same?
TIA
Robin
Remove .single should do.
No that doesn't work, it messes up my blog/home page formatting and makes the masonry grid super thin.
Robin
Ahh try this instead:
@media (min-width:769px) {
body:not(.blog).separate-containers .inside-article {
padding-top: 75px;
padding-left: 125px;
padding-right: 125px;
}
}
Many thanks Leo.
No problem!