Archived topic
Problem with extract texts of articles on categories / Mobile navigation
3 replies · Started by Clémence on June 18, 2020
Hello,
I don't find the set-up to fix my problem.
On mobile, the extracts of my articles aren't correctly displayed (they are on a thin colomn), no problem on the desktop version. They don't display on all width. Is there something to change on the theme set-up or do I have to change directly the CSS ?
Thanks for your help, and I hope my explanation are clear (sorry for my english, #frenchuser)
Hi there,
you have this CSS in Customizer > Additional CSS:
.entry-summary {
margin-left: 10em;
margin-right: 10em;
}
Remove that to fix the issue on mobile.
If you want to keep the text the same width as the image then use this CSS instead:
.inside-article .entry-summary {
max-width: 500px;
margin-left: auto;
margin-right: auto;
}
Thanks for your answer David, that's perfect ;)
You're welcome