<?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[use bottom bar better]]></title><description><![CDATA[<p dir="auto">How do i use more of the bottom bar ?</p>
<p dir="auto">Currently i have<br />
moon LARGE SPACE calendar LARGE SPACE current weather (Stacked on) weather forecast</p>
<p dir="auto">I want to use that space to the right of calendar so i can arrange the screen better. I do not want to stack.</p>
<pre><code>let config = {
    address: "0.0.0.0",
    port: 8080,
    basePath: "/",
    ipWhitelist: [],
    useHttps: false,
    httpsPrivateKey: "",
    httpsCertificate: "",

    language: "en",
    locale: "en-US",
    timeFormat: 12,
    units: "imperial",

    modules: [
        // Clock
        {
            module: "clock",
            position: "top_right",
            config: {
                timeFormat: 12,
                timezone: "America/New_York",
                displayType: "digital",
                displaySeconds: false,
                showWeek: false,
                showSunTimes: true,
                showMoonTimes: true,
                lat: ,
                lon: 
            }
        },

        // Ecobee indoor conditions
        {
            module: "MMM-Ecobee",
            position: "top_left",
            header: "Indoor Conditions",
            config: {
                updateInterval: 300000,
                showIndoorHumidity: true,
                showOutdoorWeather: false
            }
        },

        // Dynamic Weather (OpenWeather visual background)
        {
            module: "MMM-DynamicWeather",
            position: "fullscreen_above",
            config: {
                api_key: "", // required
                lat: ,
                lon: ,
                units: "imperial",
                weatherInterval: 600000,
                updateInterval: 600000,
                animationSpeed: 2000,
                effectDuration: 60000,
                effectDelay: 30000,
                fadeDuration: 3000,
                realisticClouds: true,
                sequential: "weather"
                // sunImage: "sun_center"
            }
        },

        // Calendar
        {
            module: "calendar",
            position: "bottom_center",
            header: "Holidays",
            config: {
                maximumNumberOfDays: 90,
                wrapEvents: false,
                fade: false,
                maximumEntries: 5,
                calendars: [
                    {
                        symbol: "calendar",
                        url: "https://calendar.google.com/calendar/ical/en.usa%23holiday%40group.v.calendar.google.com/public/basic.ics"
                    }
                ]
            }
        },

        // Moon Phase
        {
            module: "MMM-MoonPhase",
            position: "bottom_left",
            config: {
                hemisphere: "N",
                resolution: "detailed",
                updateInterval: 12 * 60 * 60 * 1000
            }
        },

        // Current outdoor conditions (WeatherFlow)
        {
            module: "weather",
            position: "bottom_right",
            header: "Outdoor Conditions -",
            config: {
                weatherProvider: "weatherflow",
                apiBase: "",
                token: "",
                stationid: "",
                type: "current",
                units: "imperial",
                tempUnits: "imperial",
                windUnits: "mph",
                degreeLabel: true,
                showPrecipitationProbability: true,
                showUVIndex: true,
                showWindDirection: true,
                showWindDirectionAsArrow: true,
                showHumidity: true,
                showSun: false,

                showLightning: true,
                showFeelsLike: true,
                showCloudCover: true,
                showPrecipitationAmount: true,

                updateInterval: 10 * 60 * 1000
            }
        },

        // Forecast (WeatherFlow)
        {
            module: "weather",
            position: "bottom_right",
            config: {
                weatherProvider: "weatherflow",
                apiBase: "",
                token: "",
                stationid: "",
                type: "forecast",
                units: "imperial",
                tableClass: "medium",
                colored: true,
                fade: false
            }
        }
    ]
};

if (typeof module !== "undefined") {
    module.exports = config;
}
</code></pre>
]]></description><link>https://forum.magicmirror.builders/topic/19957/use-bottom-bar-better</link><generator>RSS for Node</generator><lastBuildDate>Mon, 15 Jun 2026 17:47:16 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/19957.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 03 Nov 2025 19:24:30 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to use bottom bar better on Mon, 03 Nov 2025 22:47:21 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dcazman" aria-label="Profile: dcazman">@<bdi>dcazman</bdi></a> yes, fontsize is a brain twister</p>
<p dir="auto">many of the html elements do not inherit settings from things above them</p>
<p dir="auto">imagine if fontsize 50 worked on the top level of a printed page, suddenly everything would be 50…, even when you meant on this paragraph<br />
and some other paragraph already said 20, oops…</p>
<p dir="auto">SO, you need to find the element in the dev window elements tab and see where it got its size from (right column after you select that html element) and fix that…</p>
]]></description><link>https://forum.magicmirror.builders/post/128828</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/128828</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Mon, 03 Nov 2025 22:47:21 GMT</pubDate></item><item><title><![CDATA[Reply to use bottom bar better on Mon, 03 Nov 2025 22:32:20 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a></p>
<pre><code>.clock .time {
  font-size: 18rem;   /* try 12rem, you can adjust up/down */
}
.clock .date {
  font-size: 4rem;    /* optionally adjust the date size */
}

.region.bottom.right .container {
    flex-direction:row;
}

.currentWeatherModule {
  margin-right: 50px;
  font-size: 5rem;
}
</code></pre>
<p dir="auto">The padding works but the font-size has no impact.</p>
<p dir="auto">i tried going straight for</p>
<p dir="auto"><s>.weather</s></p>
<p dir="auto">but that did not help.</p>
]]></description><link>https://forum.magicmirror.builders/post/128827</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/128827</guid><dc:creator><![CDATA[dcazman]]></dc:creator><pubDate>Mon, 03 Nov 2025 22:32:20 GMT</pubDate></item><item><title><![CDATA[Reply to use bottom bar better on Mon, 03 Nov 2025 21:42:34 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dcazman" aria-label="Profile: dcazman">@<bdi>dcazman</bdi></a> yes, you will have to add spacing (padding I think its called)</p>
<p dir="auto">be careful, padding on left will mean both, same for right, unless you target the  module and not the container</p>
<p dir="auto">see the second link in my sig below for starter on using the browser window elements tab to discover and test css changes(which would go into custom.css)</p>
]]></description><link>https://forum.magicmirror.builders/post/128825</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/128825</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Mon, 03 Nov 2025 21:42:34 GMT</pubDate></item><item><title><![CDATA[Reply to use bottom bar better on Mon, 03 Nov 2025 21:39:45 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a></p>
<pre><code>.region.bottom.right .container {
    flex-direction:row;
}

</code></pre>
<p dir="auto">works but it crams it right. Making no space between current and forecast.</p>
<p dir="auto">they are not on top of each other rather its run on sentance.</p>
<p dir="auto">do i need to add more css to try and add some pad to the right of current weather ?</p>
]]></description><link>https://forum.magicmirror.builders/post/128824</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/128824</guid><dc:creator><![CDATA[dcazman]]></dc:creator><pubDate>Mon, 03 Nov 2025 21:39:45 GMT</pubDate></item><item><title><![CDATA[Reply to use bottom bar better on Mon, 03 Nov 2025 21:04:54 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/dcazman" aria-label="Profile: dcazman">@<bdi>dcazman</bdi></a> in a earlier release we added a specific style for container, used in each region or position</p>
<pre><code>.region .container {
  display: flex;
  flex-direction: column;
}
</code></pre>
<p dir="auto">What you may be able to do is override that for bottom right</p>
<pre><code>.region.bottom.right .container {
    flex-direction:row;
}
</code></pre>
<p dir="auto">in a previous post a few months ago I posted, for top-bar (not left or right)</p>
<pre><code>.region.bar.top .container {
        display: inline-flex !important;
        flex-direction: row;
}
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/128823</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/128823</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Mon, 03 Nov 2025 21:04:54 GMT</pubDate></item></channel></rss>