remove banner from slider images

Home Support eCommerce Gem remove banner from slider images

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #8515
    Anonymous
    Inactive

    i just need an image slider, how i can remove the banner coming on slider images? if i try to remove all the banner text from image it’s size is getting changed.

    #8516
    Anonymous
    Inactive

    Hi please share your website link

    #8517
    Anonymous
    Inactive

    Did this issue ever get resolved? I’m also curious about removing banners from the home page slider. I just want the background image with the whole image to be a link. Thanks in advance!

    #8518
    Anonymous
    Inactive

    I haven’t figured out how to remove a banner, but I can show you how to hide one. From a response to a similar question in the eCommerce Gem Plus section I got the selectors. From David Shariff’s website I found that the following CSS gives you an 80% transparent banner:

    .main-slider .slider-caption .caption-wrap {
    background: rgb(255, 255, 255) transparent;
    background: rgba(255, 255, 255, 0.8);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#CCFFFFFF, endColorstr=#CCFFFFFF);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#CCFFFFFF, endColorstr=#CCFFFFFF)";
    }

    The first item is the default; the second is for well-behaved browsers; the third is for IE6/7; the fourth is four IE8. The first item is fully transparent, the others are 80% transparency. Thanks to tech support for the location in the product’s CSS and all credit to David Shariff for the CSS. Please see his blog for additional details.

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.