Hi @jedicolin , Type this css code and your problem will be solved.
article.single-page-article.clr .entry.clr p {
float: left;
display: inline-block;
width: 50%;
}
article.single-page-article.clr .entry.clr p:first-child {
float: left;
width: 100%;
}
article.single-page-article.clr .entry.clr p:nth-child(2) {
float: left;
width: 100%;
}
Thank you, it does work but on every page.
I only want it on a couple of pages.
No problem, you can use page ID to specify the css like below:
.page-ID article.single-page-article.clr .entry.clr p {
float: left;
display: inline-block;
width: 50%;
}
.page-ID article.single-page-article.clr .entry.clr p:first-child {
float: left;
width: 100%;
}
.page-ID article.single-page-article.clr .entry.clr p:nth-child(2) {
float: left;
width: 100%;
}
in the .page-ID change the ID with your page ID number & you’ll have it for specific page.