I've successfully managed to enlarge my individual photos for posts on my blog, . However, Tumblr restricts the width of photosets to 500px.
Is there a way to increase the size of the photoset layout or disable the feature altogether so I can showcase my photos in high resolution one by one? Below is the code for the photoset:
{block:Photoset}
<article>
<span class="break" style="padding-bottom: 19px;"></span>
{Photoset-500}
{block:Caption}
<p>{Caption}</p>
{/block:Caption}
<p></p>
<time>{TimeAgo}</time>
</article>
{/block:Photoset}
And here's the code for single photos where I've managed to make them larger:
{block:Photo}
<article>
<span class="break"></span>
<img src="{PhotoURL-HighRes}" class="highres">
<p>{Caption}</p>
<time>{TimeAgo}</time>
</article>
{/block:Photo}
Thank you!