Hi, is there a way I can define my own heights of the color section? At the moment its possible to choose 100%, 75%, 50% and 25%. I would like to define 85% and 15%.
Thank you
ananda
Hey reamisag!
Please go to Enfold/js/shortcodes.js file and find following line
css += ".av-minimum-height-25 .container {height:"+wh25+"px;}\n";
and change it to
css += ".av-minimum-height-25 .container {height:"+wh15+"px;}\n";
then find
wh25 = Math.round( wh100 * 0.25 ),
and change it to
wh15 = Math.round( wh100 * 0.15 ),
You can apply the same to 75% and change it to 85%
Regards,
Yigit