Correct me if I'm wrong but I believe your full images are displayed in the FancyBox lightbox.
Well, it's a FancyBox setting.
In `inc_header.php` add this at the end between the `<script>` tags, starting at line 100.
```php
$("[data-fancybox]").fancybox({
protect: false, // Allows right-click
clickContent: false // Disable zoom
});
```