Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter sandro

    (@sandrodotxyz)

    Thank you! I guess at that point it may just be easier to modify the parent theme considering all I’m changing is one number so even if it does update it wouldn’t be a huge hassle to change again.

    Thank you for the help!

    -sandro

    Thread Starter sandro

    (@sandrodotxyz)

    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

Viewing 2 replies - 1 through 2 (of 2 total)