Background changing when opening image

70 Views Asked by At

I'm working on this website http://www.tommasofettucciari.com/tela.html , as you can see it has 2 gray bands at the sides. When I opened one of the images in the gallery, the background texture fills the entire screen...how can I preserve the 2 gray bands when the image is opened? I tried to add a "width:" instruction in the .highslide-dimming part of the highslide.css file, but it doesn't works.

thanks

1

There are 1 best solutions below

2
On

.highslide-viewport-size class is used by "background" div, so you can try to fix left value and width percent.

Simple example

.highslide-viewport-size {
    left:50px!important;
    width:90%!important;
}