@petra47
I went to Appearance and Customize then at the bottom there is an Additional CSS area and I put this information in
@media (min-width:769px) {
.page-wrap .content-wrapper.container {
width: 90%;
}
}
@media (max-width:768px) {
.page-wrap .content-wrapper.container {
width: 100%;
}
}
I broke it down for media breaks as well so if someone was looking at it on a mobile device it would use 100% of the page and then one a computer it would use 90% of the screen. I do not like using px any more because of all of the different sizes %’s have worked better for me. If you want to have the same padding for both devices just put this in
.page-wrap .content-wrapper.container {
width: 100%;
}
and select the width you want