I found the culprit in Backlight/Page Template/Pangolin Page/Content Area/Main Copy.
But, this is like nuking the padding from all other pages. All the other pages will have their text way up there, next to the Header. Not what I want.
The question is:how to address the Home page, or any other page for that matter, without creating havoc in the other pages? Will I have to create all different page templates for each page? Sounds tedious and time-consuming, unless there is a way to do this quickly and safely.
BTW, when you override a CSS settings, I try only to set the values I want to overwrite and leave the others alone. So I’d only set the padding-top and nothing else.
Looks like I finally have got it somewhat right. I say “somewhat” because although the text on the Home page is set properly, the side pallet, containing the Menu, tends to not close when a selection is made. But, only in Chrome. Maybe it will settle down after a reboot, who knows?
Thanks again Rod and Daniel
P.S. If you care to see the final CSS:
/*------------------------------------------------------------------------------------------------------*/
.the__copy {
background-color: #4f4f4f;
font-size: 1rem;
line-height: 1.25rem;
max-width: 1440px;
padding-bottom:75px;
padding-top: 0;
text-align: center;
width: 100%;
}
/*-------------------------------------Home page text placement----------------------------------*/
.pages-template-identifier-home .the__copy > .content {
background-color: rgb(79, 79, 79);
border-radius: 0;
box-shadow: none;
max-width: 1440px;
padding-top: 0;
width: 100%;
}
/*-------------------------------------------Text formating------------------------------------------*/
.slug-about .the__copy {
background-color: #4f4f4f;
font-size: 1.25em;
line-height: 1.40rem;
padding: 20px 50px 20px 50px;
text-align: justify;
}
p {
margin-bottom: 20px;
/* Ajoute une marge de 20 pixels sous chaque paragraphe */
}