zoldos
Well-known member
Trying to do this is a .css file. It keeps producing a syntax error. Please help!!
Code:
<xen:if is="{$attachment.extension} == 'mp3' ">
.attachment
{
float: left;
width: 100%;
max-width: 100%;
}
<xen:elseif is="{$attachment.extension} == 'mp4' ">
.attachment
{
float: left;
width: 100%;
max-width: 100%;
}
<xen:else />
.attachment
{
float: left;
width: 200px;
max-width: 100%;
}
</xen:if>