<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Show date below time and date info on several lines]]></title><description><![CDATA[<p dir="auto">Hi!</p>
<p dir="auto">Just thought I would share how I put the date below the time for the default Clock module using only CSS - no need to modify or create your own clock module!</p>
<p dir="auto"><img src="/assets/uploads/files/1564610343245-screenshot-2019-07-31-at-23.56.53.png" alt="0_1564610343042_Screenshot 2019-07-31 at 23.56.53.png" class=" img-fluid img-markdown" /></p>
<p dir="auto"><strong>custom.css</strong></p>
<pre><code>/* 
    CLOCK
*/

#module_2_clock &gt; div &gt; div {
    display: flex;
    flex-direction: column;
}

/* Date */
#module_2_clock &gt; div &gt; div &gt; div.date {
    order: 2;
}

/* Time */
#module_2_clock &gt; div &gt; div &gt; div.time {
    order: 1;

    font-family: Roboto, sans-serif;
    font-weight: 300;
    font-size: 80px;
    line-height: 75px;
    letter-spacing: -3px;
    color: #fff;    
}

</code></pre>
<p dir="auto">Also, to show the week on a separate line and make it a little bit smaller, use HTML tags  within brackets when setting the date format, like this:</p>
<p dir="auto"><strong>config.js</strong></p>
<pre><code>{
  module: "clock",
  position: "top_right",
  config: {
    displaySeconds: false,
    dateFormat: "dddd D MMMM[&lt; br/ &gt;&lt; small &gt;vecka] W[&lt; /small &gt;]",
  }
},
</code></pre>
<p dir="auto"><strong>NOTE:</strong> Since the forum is sanitising HTML, remove all the spaces from the tags above in <code>&lt; small &gt;</code>, <code>&lt; /small &gt;</code>  and <code>&lt; br/ &gt;</code> to make it work.</p>
<p dir="auto">Hope this can inspire and help someone! :)</p>
]]></description><link>https://forum.magicmirror.builders/topic/10879/show-date-below-time-and-date-info-on-several-lines</link><generator>RSS for Node</generator><lastBuildDate>Mon, 07 Sep 2026 06:09:06 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/10879.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 31 Jul 2019 22:17:11 GMT</pubDate><ttl>60</ttl></channel></rss>