I am facing an issue with my image gallery named slider1_container. The style properties are defined in the HTML code as follows:
<div id="slider1_container" style="position: relative; top: 0px; left: 0px; width:700px;
height: 600px; background: #191919; overflow: hidden;">
Everything works fine, except that the slider is wider than the div box below it. This div box spans 100% of the width of its parent class "rightcolumn", and although my slider1_container is also within this class, its fixed width of 700px makes it non-responsive to different viewport sizes.
I attempted using media queries to adjust the width of slider1_container to a smaller size, but the width specified in the HTML code seems to override any changes made through media queries.
[DEAD LINK REMOVED, PLEASE UPDATE]
If I change the width from 700px to auto, the width adjusts perfectly but the image gallery initially displays only a black screen until another photo is selected (a possible javascript issue).
Upon resizing the viewport on the website, you will notice that the image gallery's width does not match the div box below. How can I make the image gallery responsive like the other div?
Appreciate your help!