You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 27, 2020. It is now read-only.
In the <xsl:if test="$source-image"> on row 150 of the html.xsl we need to make sure that the $format param is used for the stk:image-create call. Otherwise transparent PNG images will always turn into opaque JPEG-images if Theme default image format is set to be JPG.
This little code inside that if check current file ending and forces "png" if original image is png. In the call-template later add <xsl:with-param name="format" select="$format" />.
In the
<xsl:if test="$source-image">on row 150 of the html.xsl we need to make sure that the $format param is used for the stk:image-create call. Otherwise transparent PNG images will always turn into opaque JPEG-images if Theme default image format is set to be JPG.This little code inside that if check current file ending and forces "png" if original image is png. In the call-template later add
<xsl:with-param name="format" select="$format" />.