That was close . . .
This is what I had input
p
{
margin-left:35px;
}
article.type-page {
margin-left: 35px;
}
@media (max-width: 767px) {
article.type-page {
margin-left: 0;
}
}
. . . but then the issue was that the entry-content container shifted 35 px to the right of the title. So . . . now it’s working with this:
article.type-page {
margin-left: 35px;
}
@media (max-width: 767px) {
article.type-page {
margin-left: 0;
}
}
Thanks for the reminder about mobile viewing. At the risk of horking this all up . . . should I have used a percentage (and should I still) instead of fixed “35px” ???