Try in own-cabo.com/beta/css/multizoom.css (additions highlighted):
Code:
.magnifyarea { /* CSS to add shadow to magnified image. Optional */
box-shadow: 5px 5px 7px #818181;
-webkit-box-shadow: 5px 5px 7px #818181;
position: fixed !important;
left: 0 !important;
top: auto !important;
bottom: 0;
-moz-box-shadow: 5px 5px 7px #818181;
filter: progid:DXImageTransform.Microsoft.dropShadow(color=#818181, offX=5, offY=5, positive=true);
background: white;
}
You can actually play further with that to get the optimal positioning for the .magnifyarea element. Almost any valid css style can be employed. However, notice how I've used the !important keyword in some places. It is required to override scripted styles (if any) that might contradict what you're setting in the stylesheet.
If desired/convenient, these added styles may also be introduced in a supplemental stylesheet for or on an individual page. If so, just make sure it comes after the stylesheet tag for the multizoom.css file.
The browser cache may need to be cleared and/or the page refreshed to see changes.
Bookmarks