• hi,

    Promotional slider plugin is not working in responsive theme.how to change to work it in responsive theme.

    Tried applying the below styles,

    div.promo_slider { height: auto !important;}
    div.promo_slider_background_image { position: absolute !important; }
    div.promo_slider_title { position: relative !important; }
    div.promo_slider_excerpt { position: relative; top: 0 !important; }

Viewing 1 replies (of 1 total)
  • The plugin is not responsive due to the ‘position:absolute’ styles on certain containers. Try this as it worked for me.

    .promo_slider{
            height:auto !important;
    }
    .promo_slider .panel{
    	position: relative !important;
    }
    .promo_slider_background_image img{
    	width:100% !important;
    	height:100% !important;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin : Promotion Slider]Promotion slider plugin for responsive theme’ is closed to new replies.