View Single Post
  #16  
Old 08-21-2012, 01:37 AM
 
PhilJ PhilJ is offline
 

X-Guru
  
Join Date: Nov 2002
Posts: 4,094
 

Default Re: X-Cart Adapt Template

Quote:
Is anyone able to point me in the direction for modifying the slider image size?

I would like to reduce the height, but cant find where.

It's a responsive slider, probably best to adjust your slider images heights, then re-upload them, otherwise your images might get distorted...

Or...

skin/adapt/addons/slider/slider/tpl

Add height tags, eg. replace...

<a href="{$config.Adapt.adapt_home_s1_link}"><img src="{$http_location}/files/uploads/slider/{$config.Adapt.adapt_home_s1}"></a>

With...

<a href="{$config.Adapt.adapt_home_s1_link}"><img src="{$http_location}/files/uploads/slider/{$config.Adapt.adapt_home_s1}" height="240"></a>

OR, skin/adapt/css/altskin.css

Replace...

.flexslider .slides img { max-width: 100%; display: block; }

With...

.flexslider .slides img { max-width: 100%; max-height: 240px; display: block; }
__________________
xcartmods.co.uk
Reply With Quote