Home › Support Forums › Theme Support › Pinboard › Gallery does not reach the full width in Standard Template › Reply To: Gallery does not reach the full width in Standard Template
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;