Bugreport, 2.2.5, Boxed Layout
-
When using “Boxed Layout” the font size is not scaling properly. It is scaling according to the slide aspect ratio producing gigantic font sizes.
In my case I switched to “Full Width” and then it works.
I located the issue to being here (wds_frontend.js):
Line 1977 and forward:
else if ( full_width == “2” ) {
slide_orig_width = jQuery(“#wds_container1_”+wds).parent().width();
ratio = wds_params[wds].image_width/wds_params[wds].image_height;
// slide_orig_height = wds_params[wds].image_height + wds_params[wds].filmstrip_height * slide_orig_width / wds_params[wds].image_width;
slide_orig_height = (wds_params[wds].filmstrip_height+slide_orig_width)/ratio – (2 * wds_params[wds].wds_glb_margin);
}Line 2064:
font_size = ratio * jQuery(this).attr(“data-fsize”);
The topic ‘Bugreport, 2.2.5, Boxed Layout’ is closed to new replies.