Reply To: Gallery does not reach the full width in Standard Template

#19053
Daniel Tara
Keymaster

This happens because you manually increased the width of the content area from 660px to 768px without changing the value of $content_width.

Open functions.php and find this line:

if( ! isset( $content_width ) ) $content_width = 660;

Change it to:

if( ! isset( $content_width ) ) $content_width = 768;