I’ve added the following CSS for post width only:
/For blog index, individual posts, and archive pages/
@media (min-width: 768px) {
/main container/
.single-post .x-container.max,
.blog .x-container.max,
.archive .x-container.max {
max-width: 890px;
}
/right container/
.single-post .x-main,
.blog .x-main,
.archive .x-main {
width: 520px;
}
/sidebar width/
.single-post .x-sidebar,
.blog .x-sidebar,
.archive .x-sidebar {
width: 290px;
}
}
How could I get the same result for pages like https://goalsarecool.com/the-achievers-toolkit/ and https://goalsarecool.com/member-dashboard/ without impacting pictures and text on true full width pages like my homepage https://goalsarecool.com/ ?
Thanks in advance!
Blake