Archived topic
Position of headings and excerpts on mobile
7 replies · Started by liz on August 5, 2021
Hi,
How can I position the headings and excerpts to the center on mobile- [Homepage only] Thanks in advance!
Hi Liza,
Are you referring to the 1 post under Parenting?
Let me know :)
i would also like to center the post title on archives but on mobile only!
Hi Johnzoro,
Can you open a new topic for your question and link us to the page in question?
Thanks :)
Hi leo
I am referring to all the articles posted in the homepage section and category archive as well but only on mobile.
Hi Liza,
Give this CSS a try:
@media (max-width: 768px) {
.home .wpsp-content-wrap {
text-align: center;
}
.archive .inside-article {
text-align: center;
}
}
Thanks, Ying!
Texts are now aligned to the center on mobile except for the one that has a background color..is there something that can be done about it? Thanks in advance.
Hi there,
try adding this CSS to correct the layout for the Yellow background post:
@media(max-width: 768px) {
.wpsp-align.wpsp-align-background .wp-show-posts-inner {
padding-right: 0 !important;
}
.wpsp-align.wpsp-align-background .wpsp-content-wrap {
padding: 20px;
}
}