I have installed Memberpress and created a course. However, the styling for the courses section is contained in a very narrow column and is unusable.
I have tried setting the width in the Theme settings to 100% stertech layout, which has not worked.
I also tried adding this to the custom CSS from the Memberpress support site, but it did not work.
html.avia_mobile {
min-width: 0px !important;
}
Can you help me fix this page’s styling so it appears full-width?
Hey Ben,
Please try the following in Quick CSS under Enfold->General Styling:
body.mpcs-course-template-default {
max-width: 100%;
}
Best regards,
Rikard
That works for the main page, then when you click through to the lesson, it reverts: https://simonbatchelar.co.uk/courses/how-to-use-ai-in-marketing-for-coaches-consultants-and-small-business-owners/lessons/welcome-2/
Hi,
Try this instead:
body.mpcs-course-template-default, body.single-mpcs-lesson {
max-width: 100%;
}
Best regards,
Rikard
That has fixed it. Thank you!