<?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[MMM-network-signal - make the message text larger]]></title><description><![CDATA[<p dir="auto">I’m trying to adjust MMM-network-signal to make the message text larger. At the moment it’s at 0.65em, which on my mirror is microscopic.</p>
<p dir="auto">I can see that it’s set in line 58 of the js file (see <a href="https://github.com/PoOwAa/MMM-network-signal/blob/master/MMM-network-signal.js" target="_blank" rel="noopener noreferrer nofollow ugc">here</a> ), and if I do a test with manual editing it works fine.</p>
<p dir="auto">But I’d like to override it with a custom.css entry instead, but I’m struggling to work out what the syntax would be for that specific item.</p>
<p dir="auto">Can someone give me some pointers as to what the entry in custom.css would need to be to override the 0.65em to 1.5em?</p>
]]></description><link>https://forum.magicmirror.builders/topic/16565/mmm-network-signal-make-the-message-text-larger</link><generator>RSS for Node</generator><lastBuildDate>Mon, 07 Sep 2026 05:34:07 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/16565.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 02 Apr 2022 18:18:19 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MMM-network-signal - make the message text larger on Sun, 03 Apr 2022 13:06:21 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mumblebaj" aria-label="Profile: mumblebaj">@<bdi>mumblebaj</bdi></a> well, it made the font bigger, but NOT 1.5em…</p>
]]></description><link>https://forum.magicmirror.builders/post/100770</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/100770</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sun, 03 Apr 2022 13:06:21 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-network-signal - make the message text larger on Sun, 03 Apr 2022 12:41:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mumblebaj" aria-label="Profile: mumblebaj">@<bdi>mumblebaj</bdi></a> Just tried it (copy/paste from your code above) and whilst the yellow works, the font-size didn’t for me.</p>
]]></description><link>https://forum.magicmirror.builders/post/100768</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/100768</guid><dc:creator><![CDATA[DarrenHill]]></dc:creator><pubDate>Sun, 03 Apr 2022 12:41:38 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-network-signal - make the message text larger on Sun, 03 Apr 2022 12:29:51 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> Try it.  It works. I tested it.</p>
]]></description><link>https://forum.magicmirror.builders/post/100767</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/100767</guid><dc:creator><![CDATA[mumblebaj]]></dc:creator><pubDate>Sun, 03 Apr 2022 12:29:51 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-network-signal - make the message text larger on Sun, 03 Apr 2022 12:26:58 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/darrenhill" aria-label="Profile: DarrenHill">@<bdi>DarrenHill</bdi></a> said in <a href="/post/100763">MMM-network-signal - make the message text larger</a>:</p>
<blockquote>
<p dir="auto">So yesterday’s learning was GitHub, today’s is CSS<br />
also see the ways you can select elements</p>
</blockquote>
<p dir="auto"><a href="https://www.w3schools.com/cssref/css_selectors.asp" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.w3schools.com/cssref/css_selectors.asp</a></p>
]]></description><link>https://forum.magicmirror.builders/post/100766</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/100766</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sun, 03 Apr 2022 12:26:58 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-network-signal - make the message text larger on Sun, 03 Apr 2022 12:25:02 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mumblebaj" aria-label="Profile: mumblebaj">@<bdi>mumblebaj</bdi></a> where do you see the leading comma in the css selector definition, except for allowing the same style to apply to multiple selectors</p>
<pre><code>.class element1, element2, element3 { 
   styles
}
</code></pre>
<p dir="auto">vs having three separate definitions…</p>
<pre><code>.class element1{ 
   styles
}
.class element2 { 
   styles
}
.class element3 { 
   styles
}
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/100765</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/100765</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sun, 03 Apr 2022 12:25:02 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-network-signal - make the message text larger on Sun, 03 Apr 2022 12:15:13 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/darrenhill" aria-label="Profile: DarrenHill">@<bdi>DarrenHill</bdi></a> this worked for me. note the <strong>,</strong> before the <strong>p</strong></p>
<pre><code>.MMM-network-signal ,p {
font-size: 1.5em;
color: yellow;
}
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/100764</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/100764</guid><dc:creator><![CDATA[mumblebaj]]></dc:creator><pubDate>Sun, 03 Apr 2022 12:15:13 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-network-signal - make the message text larger on Sun, 03 Apr 2022 12:13:15 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> And we have a winner :D</p>
<p dir="auto">That one worked as you say, thanks Sam!</p>
<p dir="auto">So yesterday’s learning was GitHub, today’s is CSS ;)</p>
]]></description><link>https://forum.magicmirror.builders/post/100763</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/100763</guid><dc:creator><![CDATA[DarrenHill]]></dc:creator><pubDate>Sun, 03 Apr 2022 12:13:15 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-network-signal - make the message text larger on Sun, 03 Apr 2022 12:03:18 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/darrenhill" aria-label="Profile: DarrenHill">@<bdi>DarrenHill</bdi></a> said in <a href="/post/100760">MMM-network-signal - make the message text larger</a></p>
<pre><code>.MMM-network-signal p {
    font-size: 1.5em;
 }
</code></pre>
<p dir="auto">yeh, override is tricky sometimes…  the ‘nearest’ specified  (to the targeted thing) style  wins…<br />
in this case the style= specified ON the element itself</p>
<p dir="auto">UNLESS</p>
<p dir="auto">you add !important</p>
<p dir="auto">this works</p>
<pre><code>.MMM-network-signal p {
    font-size: 1.5em !important;
 }
</code></pre>
<p dir="auto"><a href="https://www.w3schools.com/css/css_important.asp" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.w3schools.com/css/css_important.asp</a></p>
]]></description><link>https://forum.magicmirror.builders/post/100762</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/100762</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sun, 03 Apr 2022 12:03:18 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-network-signal - make the message text larger on Sun, 03 Apr 2022 11:37:05 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> So looks like the element is p as you correctly surmised before, but for some reason the custom.css entry is getting overwritten or somehow blocked (you can see it’s there in the inspector, but struck through)?</p>
<p dir="auto">Here now I have no idea, aside from breaking rule 1 and just editing the js file directly…</p>
<p dir="auto">The config.js setting for the module is:</p>
<pre><code>        {
            module: "MMM-network-signal",
            position: "bottom_right",
            config: {
                server: "8.8.8.8",
                showMessage: true,
                flexDirection: "row-reverse",
                scale: 0.35
            }
        },

</code></pre>
<p dir="auto">And the custom.css entry is :</p>
<pre><code>.MMM-network-signal p {
  font-size: 1.5em;
}

</code></pre>
<p dir="auto">I also tried fontSize: as per your original suggestion, but that didn’t work either.</p>
]]></description><link>https://forum.magicmirror.builders/post/100760</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/100760</guid><dc:creator><![CDATA[DarrenHill]]></dc:creator><pubDate>Sun, 03 Apr 2022 11:37:05 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-network-signal - make the message text larger on Sun, 03 Apr 2022 10:30:31 GMT]]></title><description><![CDATA[<p dir="auto">Better picture, having set up client/server:</p>
<p dir="auto"><img src="https://i.imgur.com/XB7JtdP.jpg" alt="Desktop screengrab" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.magicmirror.builders/post/100759</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/100759</guid><dc:creator><![CDATA[DarrenHill]]></dc:creator><pubDate>Sun, 03 Apr 2022 10:30:31 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-network-signal - make the message text larger on Sun, 03 Apr 2022 09:14:04 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> I’ve dug a bit deeper and can see that the custom.css is there, but seems to be being overwritten (it’s crossed out)?</p>
<p dir="auto">Here’s a screenshot of the mirror (apologies for quality, it’s via phone). Can you guide where I should be looking or clicking for this?</p>
<p dir="auto"><img src="https://i.imgur.com/HxgBPPP.jpg" alt="Mirror screenshot" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.magicmirror.builders/post/100756</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/100756</guid><dc:creator><![CDATA[DarrenHill]]></dc:creator><pubDate>Sun, 03 Apr 2022 09:14:04 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-network-signal - make the message text larger on Sun, 03 Apr 2022 08:58:05 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> I’m not sure I’m doing this right.</p>
<p dir="auto">I’ve pressed ctrl+shift+i and got the inspector window up, then selected the elements tab (although it’s the default selection anyway) then clicked on the mouse pointer icon at top-left and then clicked onto the message text in the main mirror window.</p>
<p dir="auto">When I do that I get the sub-window at the bottom of the inspector with div and P tabs, with the P tab selected. There I can see element.style with the text-align and font-size sub-entities plus user agent and main.css items.</p>
<p dir="auto">P I take it from the code is the paragraph entity I need to be resizing, and from the top of the code the module name is .MMM-network-signal but it’s the rest of the top line to go into custom.css that I’m struggling to identify.</p>
<p dir="auto">I’m not sure what you’re referring to by top-right box? I can see an icon for a computed styles sidebar, but there’s nothing much in there that isn’t in the other window area? This is on a Pi3 in a PiTop Ceed, so whilst I have keyboard/mouse connected up, my screen size is not so large to display everything without restricted menus (so I might be missing something here)</p>
]]></description><link>https://forum.magicmirror.builders/post/100754</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/100754</guid><dc:creator><![CDATA[DarrenHill]]></dc:creator><pubDate>Sun, 03 Apr 2022 08:58:05 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-network-signal - make the message text larger on Sat, 02 Apr 2022 21:47:34 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/darrenhill" aria-label="Profile: DarrenHill">@<bdi>DarrenHill</bdi></a> what IS the element?</p>
<p dir="auto">should be a paragraph<br />
u can change it in the top right box,  then swipe/select the new settings, and copy/paste to custom.css</p>
<p dir="auto">the custom.css is</p>
<p dir="auto">. (for class)modulename (exact text case)  element {<br />
styles<br />
}</p>
<p dir="auto">and I should be able to see where the styles come from</p>
]]></description><link>https://forum.magicmirror.builders/post/100744</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/100744</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 02 Apr 2022 21:47:34 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-network-signal - make the message text larger on Sat, 02 Apr 2022 21:06:46 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> I can see the two entries (text-align and font-size) in there under element.style when I select the message text.</p>
<p dir="auto">I’m not sure how this helps us though? Is that what I should be looking to find, the element.style tag?</p>
]]></description><link>https://forum.magicmirror.builders/post/100743</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/100743</guid><dc:creator><![CDATA[DarrenHill]]></dc:creator><pubDate>Sat, 02 Apr 2022 21:06:46 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-network-signal - make the message text larger on Sat, 02 Apr 2022 20:07:12 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/darrenhill" aria-label="Profile: DarrenHill">@<bdi>DarrenHill</bdi></a> I  am on my phone, look at this</p>
<p dir="auto"><a href="https://forum.magicmirror.builders/topic/14862/help-with-a-couple-css-issues?_=1648929944792">https://forum.magicmirror.builders/topic/14862/help-with-a-couple-css-issues?_=1648929944792</a></p>
]]></description><link>https://forum.magicmirror.builders/post/100742</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/100742</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 02 Apr 2022 20:07:12 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-network-signal - make the message text larger on Sat, 02 Apr 2022 19:35:56 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> said in <a href="/post/100739">MMM-network-signal - make the message text larger</a>:</p>
<blockquote>
<p dir="auto">.MMM-network-signal p {<br />
fontSize: 1.5em;<br />
}</p>
</blockquote>
<p dir="auto">Thanks for the suggestion Sam. Unfortunately when I added that to custom.css and restarted, I’ve still got microscopic text :(</p>
<p dir="auto">I also tried font-size: instead of fontSize: (like other css items I have in there, and like in the js file) but that doesn’t work either.</p>
]]></description><link>https://forum.magicmirror.builders/post/100740</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/100740</guid><dc:creator><![CDATA[DarrenHill]]></dc:creator><pubDate>Sat, 02 Apr 2022 19:35:56 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-network-signal - make the message text larger on Sat, 02 Apr 2022 18:47:40 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/darrenhill" aria-label="Profile: DarrenHill">@<bdi>DarrenHill</bdi></a>  because it’s the only paragraph (“p”) tag, u can target that.</p>
<pre><code>.MMM-network-signal p {
    fontSize: 1.5em;
}
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/100739</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/100739</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sat, 02 Apr 2022 18:47:40 GMT</pubDate></item></channel></rss>