The link to the post is here
I did find a workaround by going into the the ‘functions.php’ of the parent theme ‘Boardwalk’ and editing the line
/**
* Set the content width based on the theme's design and stylesheet.
*/
if ( ! isset( $content_width ) ) {
$content_width = 1240; /* pixels */
}
to
/**
* Set the content width based on the theme's design and stylesheet.
*/
if ( ! isset( $content_width ) ) {
$content_width = 768; /* pixels */
}
and then changing the CSS for the page to
.entry-content{
max-width: 1240px;
width: 100%;
}
I took out the implementation of changing the ‘functions.php’ and left the CSS change to highlight the issue. I was hoping there would be a way to fix this issue without changing the ‘functions.php’ because I know that will likely reset every time the theme is updated.
Thank you,
-sandro