<?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[Easy Center Resizing?]]></title><description><![CDATA[<p dir="auto">I’ve asked this question before. At least twice. The answer has always been “edit the CSS” and/or “figure it out yourself.”</p>
<p dir="auto">This is supposed to be a project that everyone can figure out.</p>
<p dir="auto">All I want to do, is make the middle smaller, so that I don’t have issues with the left and right (the only sides I use!) resizing.</p>
<p dir="auto">Look at all that space in the middle. It’s useless. Now notice how the sunrise/sunset module has to word-wrap? Why?</p>
<p dir="auto"><img src="/assets/uploads/files/1683480961897-magicmirror2023-05-07.jpg" alt="MagicMirror2023-05-07.jpg" class=" img-fluid img-markdown" /></p>
<p dir="auto">Is there a SIMPLE, consistent way to make the center smaller, so that the left and right can fill the available space?</p>
<p dir="auto">This should not be custom CSS. This should not be rocket science. This should be reproducible, and honestly, I think it should be baked into the configuration file as a binary switch. “Make the middle disappear so that the left and right can fill the space.” Or “Make the middle smaller, because you’re not using it for anything, so why waste all that space?”</p>
<p dir="auto">I honestly don’t know if this is a feature request (it’s something that MagicMirror should do natively, but doesn’t), or a bug (maybe I missed something, and there is an easy way to make the middle smaller), or if I’m literally the only person in the MagicMirror community who experiences this sort of thing and no one actually cares?</p>
<p dir="auto">Why have I had to ask this question for literally years?</p>
]]></description><link>https://forum.magicmirror.builders/topic/17777/easy-center-resizing</link><generator>RSS for Node</generator><lastBuildDate>Wed, 22 Jul 2026 17:24:17 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/17777.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 07 May 2023 17:36:52 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Easy Center Resizing? on Fri, 12 May 2023 19:22:03 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mmrize" aria-label="Profile: MMRIZE">@<bdi>MMRIZE</bdi></a> I would love to see it reworked, mostly to add the missing  2 positions. (middle left, middle right)</p>
]]></description><link>https://forum.magicmirror.builders/post/109341</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/109341</guid><dc:creator><![CDATA[BKeyport]]></dc:creator><pubDate>Fri, 12 May 2023 19:22:03 GMT</pubDate></item><item><title><![CDATA[Reply to Easy Center Resizing? on Fri, 12 May 2023 06:41:10 GMT]]></title><description><![CDATA[<p dir="auto">The <code>center</code> position is the weirdest thing of MM. The <code>width</code> of center is decided by this code;</p>
<pre><code class="language-css">.region.top.center,
.region.bottom.center {
  left: 50%;
  transform: translateX(-50%);
}
</code></pre>
<p dir="auto">This code looks so intuitive, but not so really. It is calculated and applied after rendering, so that makes some issues;</p>
<p dir="auto">Anyway, this code would be a help for what you want;</p>
<pre><code class="language-css">.region.left {
  width: 50%;
  background-color: rgba(255,0,0, 0.2); /* to check how it shows visibly; remove this line later. */
}

.region.right {
  width: 50%;
  background-color: rgba(0,255,0, 0.2); /* to check how it shows visibly; remove this line later. */
}

.region.center {
  display:none;
}
</code></pre>
<p dir="auto">By the way, current structure of MM’s positioning becomes a bit old and stubborn legacy.(almost 7 or 8 years old) Maybe we need to progress with more modern techs.</p>
]]></description><link>https://forum.magicmirror.builders/post/109338</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/109338</guid><dc:creator><![CDATA[MMRIZE]]></dc:creator><pubDate>Fri, 12 May 2023 06:41:10 GMT</pubDate></item><item><title><![CDATA[Reply to Easy Center Resizing? on Fri, 12 May 2023 05:12:02 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/amarand" aria-label="Profile: amarand">@<bdi>amarand</bdi></a> I’d do it like this:</p>
<pre><code>.region.right {
	min-width: 450px;
}

.region.left {
	min-width: 450px;
}

</code></pre>
<p dir="auto">there’s also <code>max-width</code> if you want to lock it solid.</p>
<p dir="auto">Easy.</p>
]]></description><link>https://forum.magicmirror.builders/post/109337</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/109337</guid><dc:creator><![CDATA[BKeyport]]></dc:creator><pubDate>Fri, 12 May 2023 05:12:02 GMT</pubDate></item><item><title><![CDATA[Reply to Easy Center Resizing? on Thu, 11 May 2023 23:20:49 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/amarand" aria-label="Profile: amarand">@<bdi>amarand</bdi></a> ps. I’ve been here since 2017, and do a lot of css, and modules… but I couldn’t tell you how to do it, cause I can’t myself.</p>
]]></description><link>https://forum.magicmirror.builders/post/109336</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/109336</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 11 May 2023 23:20:49 GMT</pubDate></item><item><title><![CDATA[Reply to Easy Center Resizing? on Sun, 07 May 2023 19:26:19 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/amarand" aria-label="Profile: amarand">@<bdi>amarand</bdi></a> sadly there is no ‘easy’ way</p>
<p dir="auto">the default section/position/regions layout is like this<br />
<a href="https://forum.magicmirror.builders/topic/286/regions?_=1683231109633">https://forum.magicmirror.builders/topic/286/regions?_=1683231109633</a></p>
<p dir="auto">no two authors do styling the same way.   every thing u tweak makes trouble somewhere else…</p>
<p dir="auto">using the developers console is one good tool, but its all still hard work.<br />
<a href="https://forum.magicmirror.builders/topic/14862/help-with-a-couple-css-issues?_=1683231109642">https://forum.magicmirror.builders/topic/14862/help-with-a-couple-css-issues?_=1683231109642</a></p>
]]></description><link>https://forum.magicmirror.builders/post/109241</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/109241</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sun, 07 May 2023 19:26:19 GMT</pubDate></item></channel></rss>