an ASP.NET Open Source CMS & eCommerce platform
Search:
Last Post 1/28/2010 11:09:48 AM By Bahram. 4 replies.
1/25/2010 12:39:25 PM
Bahram
Posts: 878
Joined: 12/8/2008
Location:Vancouver, BC Canada
Image Carousel Error
Image Carousel, shows all images in screen and scrolls in all screen.
 
How can I make sure the Images Box are within the same frame of the website. Where I can see the HTML scripts.
 
1/25/2010 2:18:01 PM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: Image Carousel Error
I don't understand your question. Could you please elobrate?
DotShoppingCart Staff
1/25/2010 2:44:28 PM
Bahram
Posts: 878
Joined: 12/8/2008
Location:Vancouver, BC Canada
Re: Image Carousel Error
 I already sent the screenshot in email.
 
 
 
1/28/2010 11:09:47 AM
Bahram
Posts: 878
Joined: 12/8/2008
Location:Vancouver, BC Canada
Re: Image Carousel Error Fixed
This CSS code must be inserted in your default CSS file to show Image Carousel Correctly
 
div.slideImageBox {
    overflow:hidden;
    background-color:%Background Color%;
    position:relative;
    clear:both;
}
 
div.slideImageBox div.slideImageFrame {
    clear:both;
}
 
div.slideImageBox a.slideImage {
    float:left;
    display:block;
    cursor:default;
}
 
div.slideImageBox a.slideImage img {
    display:inline;
}
 
ul.navigationButton {
    list-style-type:none;
    margin:12px;
    padding:0;
    position:absolute;
    bottom:0;
    right:0;
    vertical-align:baseline;
}
 
ul.navigationButton li {
    display:inline;
    float:left;
    margin-left:8px;
    vertical-align:baseline;
}
 
ul.navigationButton li span {
    background-color:%Accent Background Color%;
    border:1px solid %Accent Background Gradient Start Color%;
    color:%Accent Fore Color%;
    display:inline;
    float:left;
    text-align:center;
    text-decoration:none;
    cursor:pointer;
    font-weight:bold;
    padding:3px 6px;
}
 
ul.navigationButton li span.selected {
    background-color:%Accent Highlight Background Color%;
    border:1px solid %Accent Highlight Background Gradient Start%;
    color:%Accent Highlight Fore Color%;
    font-weight:bold;
}
 
1/28/2010 11:09:48 AM
Bahram
Posts: 878
Joined: 12/8/2008
Location:Vancouver, BC Canada
Re: Image Carousel Error Fixed