I realized that a dropdown for sorting wasnt good.
So now I have a text button for the sorting
<label>
<xsl:element name="a" >
<xsl:attribute name="href">
<span>
<xsl:value-of select="OrderLink"/>
</span>
</xsl:attribute>
<xsl:value-of select="OrderType" class="button"/>
</xsl:element>
</label>
This displays a link to change the sorting style.
Is there a way to have both styles show, in my case "Sort by Date" and "Sort by Relevance", except one is a button to change, and the other is something static.
Similar to this style (The Toggle button version)?
http://www.uxcentral.com/wp-content/upl ... e-sort.png
So now I have a text button for the sorting
<label>
<xsl:element name="a" >
<xsl:attribute name="href">
<span>
<xsl:value-of select="OrderLink"/>
</span>
</xsl:attribute>
<xsl:value-of select="OrderType" class="button"/>
</xsl:element>
</label>
This displays a link to change the sorting style.
Is there a way to have both styles show, in my case "Sort by Date" and "Sort by Relevance", except one is a button to change, and the other is something static.
Similar to this style (The Toggle button version)?
http://www.uxcentral.com/wp-content/upl ... e-sort.png