var date = String.Format("{0:yyyy-MM-ddTHH:mm:ss.fffffffZ}",
dateObjectToFormat);
This produces a date in this format in Solr:
Check out this documentation on the Solr date formats.2010-03-09T00:00:00Z
Web application R&D notes, from the world of Java, Flex, CSS, XHTML, Flash, .NET, cross-browser compatibility, JavaScript, AJAX, ADA compliance, Photoshop, and any and all things related to Web development!
var date = String.Format("{0:yyyy-MM-ddTHH:mm:ss.fffffffZ}",
dateObjectToFormat);
This produces a date in this format in Solr:
Check out this documentation on the Solr date formats.2010-03-09T00:00:00Z
html>/**/body .my-css-rule-name {
/* some CSS */
}Thanks to David Hammond's CSS Hacks page.
#main-content ul{ margin-left:0 }
The solution? Use the hack to reference only IE7 (the hash tag):
#main-content ul{
margin-left:0;
/*
The next two lines are only visible to IE7. This fixes the
issue of IE7 not showing the bulleted items; they were
flushed left so far that the bullet was mostly hidden.
All other browsers ignore the next two lines.
*/
#margin:0 5px 0 42px !important;
#padding:0;
}