Actually I figured out what was going on, in the mod_aricloudcarousel.xml file the thumbnail height was set to default to 150, so everytime I saved with nothing in the width box, it put 150 there.
So I found this line:
Code: |
<field name="imglist_thumbWidth" type="text" size="6" default="150" label="ACC_THUMBWIDTH_LABEL" description="ACC_THUMBWIDTH_DESCR" />
|
and changed it to this:
Code: |
<field name="imglist_thumbWidth" type="text" size="6" default="" label="ACC_THUMBWIDTH_LABEL" description="ACC_THUMBWIDTH_DESCR" />
|
Now it works great, thanks for a wonderful module!