<?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[Can I hard code the widths for the top_left and top_right columns?]]></title><description><![CDATA[<p dir="auto">Hi,<br />
I have a MM module that expands to take up too much of the screen.  Instead of using max_width for that one module, is there a way I can hard code the width of both the left and right columns (fields, locations, whatever you call it).</p>
<p dir="auto">I’d like to specify the width of the blank space that goes all the way around the display (or at last the left and right edges), and the width of the left and right columns.  I assume this would go in the CSS file somewhere, but I don’t know the names of what I’d need to specify.</p>
<p dir="auto">Thanks.</p>
]]></description><link>https://forum.magicmirror.builders/topic/18420/can-i-hard-code-the-widths-for-the-top_left-and-top_right-columns</link><generator>RSS for Node</generator><lastBuildDate>Sun, 17 May 2026 23:34:42 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/18420.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 20 Jan 2024 20:14:49 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Can I hard code the widths for the top_left and top_right columns? on Sun, 21 Jan 2024 02:36:16 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> That being said, you can.</p>
<pre><code>.region.left {
	min-width: 640px;
	max-width: 640px; 
}
</code></pre>
<p dir="auto">It’s dirty, but it does work. Would be really bad if it wasn’t for the fact that we’re working in a system that has a known single output for the most part.</p>
]]></description><link>https://forum.magicmirror.builders/post/114788</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/114788</guid><dc:creator><![CDATA[BKeyport]]></dc:creator><pubDate>Sun, 21 Jan 2024 02:36:16 GMT</pubDate></item><item><title><![CDATA[Reply to Can I hard code the widths for the top_left and top_right columns? on Sat, 20 Jan 2024 20:58:46 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kelemvor" aria-label="Profile: Kelemvor">@<bdi>Kelemvor</bdi></a></p>
<p dir="auto">see the css/main.css for the base page definition<br />
these are the around the edge spacing</p>
<pre><code class="language-css">  --gap-body-top: 60px;
  --gap-body-right: 60px;
  --gap-body-bottom: 60px;
  --gap-body-left: 60px;
</code></pre>
<p dir="auto">web content doesn’t really understand fixed widths<br />
you can set width and height</p>
<p dir="auto">use the developers window on the browser you are using to view the MM page (you can view if from your window machine and use the dev window there)</p>
<p dir="auto">the top right box will let you set styles  on the element that is selected,<br />
so you can mod the body, or a region.  or…</p>
]]></description><link>https://forum.magicmirror.builders/post/114785</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/114785</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 20 Jan 2024 20:58:46 GMT</pubDate></item></channel></rss>