Sometimes it is nice to know how to use SharePoint Designer to create SharePoint elements. One such scenario is use of xslt to change style depending on a variable in a list example; set s color on the prices that are more than an amount on a list. One thing is doing it in SharePoint designer on your local developer computer another is to translate that to a solution you can deploy. In this example I’m using SharePoint designer to set a rule that says that if a price on an order list is higher than 600 the background color to be set to Red. First I created the scenario in SharePoint Designer: First create an Orders list as a Custom list and add a Column called price, make sure to have one test item. Then open the list in SharePoint Designer. Here you can create the xslt by clicking on the All Items, then select a row in design view and select Conditional Formation. Do the formation that you need and save. In code view look for the XSL tag and make a copy of the content of the xsl tagl....