
Originally Posted by
balihr
It's because the modal window limits the size of its contents. Your image IS being loaded as 1024x1024px, but displayed as 480x480 as that's all that fits in the container (responsive).
Modal window is set to max-width: 800px, and then if you look at the structure, you'll get down to div id="slider" class="col-lg-8 offset-lg-2", which means 8/12 of the parent. Add some paddings along the way and you get your 480px. You can change it to col-12 (and remove the offset), but you risk additional images going below the viewport so you'd have to scroll down to click on the additional image thumbnail...
Balihr,
Your very close in solving the issue.
This what needs to be changed
find and remove in the html
Code:
col-lg-8 offset-lg-2
find
Code:
@media (min-width: 992px) {
.modal-lg, .modal-xl {
max-width: 800px;
}
repace with
Code:
@media (min-width: 992px) {
.modal-lg, .modal-xl {
max-width: 1400px;
}