﻿/* You can alter this CSS in order to give SmoothDivScroll your own look'n'feel */ /* Invisible left hotspot */ div.scrollingHotSpotLeft { /* The hotspots have a minimum width of 75 pixels  and if there is room the will grow and occupy 10%  of the scrollable area (20% combined).  Adjust it to your own taste. */ min-width: 40px; width: 40px; height: 100%; /* There is a big background image and it's used to  solve some problems I experienced in Internet Explorer 6. */ background-image: url('big_transparent.gif'); background-repeat: no-repeat; background-position: center center; position: absolute; z-index: 200; left: 0; cursor: w-resize; } /* Visible left hotspot */ div.scrollingHotSpotLeftVisible { background-image: url('ION-Arrow-Left.jpg'); background-color: #fff; background-repeat: no-repeat; opacity: 0.8; filter: alpha(opacity = 80); -moz-opacity: 0.8; zoom: 1; } /* Invisible right hotspot */ div.scrollingHotSpotRight { min-width: 40px; width: 40px; height: 100%; background-image: url('big_transparent.gif'); background-repeat: no-repeat; background-position: center center; position: absolute; z-index: 200; right: 0; cursor: e-resize; } /* Visible right hotspot */ div.scrollingHotSpotRightVisible { background-image: url('ION-Arrow-Right.jpg'); background-color: #fff; background-repeat: no-repeat; opacity: 0.8; filter: alpha(opacity = 80); -moz-opacity: 0.8; zoom: 1; } /* The scroll wrapper is always the same width and  height as the containing element (div). Overflow  is hidden because you don't want to show all of  the scrollable area. */ div.scrollWrapper { position: relative; overflow: hidden; height: 97px; } div.scrollableArea { position: relative; width: auto; height: 97px; } #makeMeScrollable{ height: 97px; position: relative; } #makeMeScrollable div.scrollableArea img{ position: relative; float: left; margin: 0; border: 0; padding: 0 5px 0 5px; max-height: 97px; }