Summary:
cross browser issue (incl. solution)
Detailed Description:
Module: Album 0.9.3
Album Template: lyteshow
Issue: scrollbars appear next to "stop", "play" & "pauze" buttons when visitor
opens image full screen in Internet Explorer
Solution:
modification to /modules/Album/templates/db/lytebox/lytebox.css
-----------REPLACE-----------
#lbDetailsContainer { font: 10px Verdana, Helvetica, sans-serif;
background-color: #fff; width: 100%; line-height: 1.4em; overflow: auto; margin:
0 auto; }
-----------WITH-----------
#lbDetailsContainer { font: 10px Verdana, Helvetica, sans-serif;
background-color: #fff; width: 100%; line-height: 1.4em; overflow: auto;
overflow-x:hidden; overflow-y:hidden; margin: 0 auto; }
-----------REPLACE-----------
#lbDetails { width: 60%; float: left; text-align: left; }
-----------WITH-----------
#lbDetails { width: 100%; clear:both; float: left; text-align: left; }
-----------REPLACE-----------
#lbNumberDisplay { float: left; display: block; padding-bottom: 1.0em; }
-----------WITH-----------
#lbNumberDisplay { width: 100%; float: left; clear:both; text-align:left;
padding-bottom: 1.0em; }