My issue is that when viewing inner pages of my site, on mobile in portrait view, there are NO spaces between ANY of the paragraphs, which causes walls of text. Meanwhile on desktop and in mobile landscape view, everything looks normal.
I already tried this CSS:
@media (max-width: 480px){
.entry-content p {
margin: 0 0 24px;
}
}
It doesn′t work,
and I′ve tried another one:
.site-main p {
margin: 0 0 10px !important;
}
It doesn′t work again,
In landcaspe everthing ok. The issue is in Portait.
Thanks in advance:)
??