Solution to all those problems is quite simple, yet not so easy to
find.

Go to line with

if($params->get('useSuperSubs')) $superstring .= '.supersubs({minWidth:
\''.$params->get('min_width').'\', maxWidth:\''.$params->get
('max_width').'\', extraWidth:\''.$params->get('extra_width').'\'})';

and remove every \' from this line , so You will get

if($params->get('useSuperSubs')) $superstring .= '.supersubs
({minWidth:'.$params->get('min_width').', maxWidth:'.$params->get
('max_width').', extraWidth:'.$params->get('extra_width').'})';

Although remember to give the width in em not in pixels.

Reply via email to