You can add XSL-file to your list views for format of dates or using SPD. Under Miscellaneous there is an option to add a XSL link.
I'll give you an example, I'm not an expert on XSL, but the stylesheet under works. If its the best way to do it I don't know :)
<xsl:stylesheet xmlns:x="http://www.w3.org/2001/XMLSchema" xmlns:d="http://schemas.microsoft.com/sharepoint/dsp" version="1.0" exclude-result-prefixes="xsl msxsl ddwrt" xmlns:ddwrt="http://schemas.microsoft.com/WebParts/v2/DataView/runtime" xmlns:asp="http://schemas.microsoft.com/ASPNET/20" xmlns:__designer="http://schemas.microsoft.com/WebParts/v2/DataView/designer" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt" xmlns:SharePoint="Microsoft.SharePoint.WebControls" xmlns:ddwrt2="urn:frontpage:internal" xmlns:o="urn:schemas-microsoft-com:office:office"> <xsl:include href="/_layouts/xsl/main.xsl"/> <xsl:include href="/_layouts/xsl/internal.xsl"/> <xsl:template name="FieldRef_DateTime_body.DueDate" match="FieldRef[@Name='DueDate']" mode="DateTime_body" ddwrt:dvt_mode="body"> <xsl:param name="thisNode" select="."/> <xsl:value-of select="ddwrt:FormatDate(string($thisNode/@DueDate),1033,4)" /> </xsl:template> </xsl:stylesheet>
Note the format flag used is 4 for FormatDate, which means it takes out the Time Only, not the dates.