<?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 coloring the icon]]></title><description><![CDATA[<p dir="auto">Hello,<br />
I have just installed the MMM-network-signal module.<br />
It’s working fine.<br />
But I would like to have the connection icon in green color instread of grey.<br />
Do I have to change the icons .png used by the module in the MMM-network-signal/icons subdirectory ?<br />
Or is there another way to change their color ?<br />
Thank you very much for your help.</p>
]]></description><link>https://forum.magicmirror.builders/topic/17520/mmm-network-signal-coloring-the-icon</link><generator>RSS for Node</generator><lastBuildDate>Thu, 21 May 2026 05:28:33 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/17520.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 08 Jan 2023 00:53:54 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MMM-network-signal coloring the icon on Thu, 12 Jan 2023 13:43:22 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/plainbroke" aria-label="Profile: plainbroke">@<bdi>plainbroke</bdi></a> the other thing is positioning</p>
<p dir="auto">there are two modes  relative and absolute</p>
<p dir="auto">a web page is layed out with 0 in the top left corner (0,0) (or right in rtl languages)</p>
<p dir="auto">in relative mode, content is positioned RELATIVE to the containing element it is in</p>
<p dir="auto">text in a div , if centered, is in the center of the div space, wherever it is.</p>
<p dir="auto">there are different measurement types<br />
pixels, physical (absolute)<br />
els(element size),  content relative (size of text)<br />
%, shape relative.  (size of div)<br />
vh/vw%  - size of the visible page  h= height  w= width</p>
<p dir="auto">pixels is easy  but if the screen size changes, the pixels don’t.</p>
<p dir="auto">in absolute mode, everything is relative to the 0,0 corner.</p>
<p dir="auto">by default content is top down , FIFO.<br />
first in, first out.</p>
<p dir="auto">but you can use flex to change the preference from vertical to horizontal.  and which end is the start or end.</p>
<p dir="auto">and then there is grid.  yikes!</p>
<p dir="auto">fonts and colors and shadings and animations (fade and zoom and transparency!)</p>
]]></description><link>https://forum.magicmirror.builders/post/107125</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107125</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 12 Jan 2023 13:43:22 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-network-signal coloring the icon on Thu, 12 Jan 2023 13:40:42 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/plainbroke" aria-label="Profile: plainbroke">@<bdi>plainbroke</bdi></a> use my link above, its really very  easy to use… KNOWing what to SET things too is the hard part…</p>
<p dir="auto">its a whole nother language all its own…</p>
<p dir="auto">selecting the element is the key, and then applying the style to that element…</p>
<p dir="auto">this is the selector cheat-sheet I like to use</p>
<p dir="auto"><a href="https://www.w3schools.com/cssref/css_selectors.php" target="_blank" rel="noopener noreferrer nofollow ugc">https://www.w3schools.com/cssref/css_selectors.php</a></p>
<p dir="auto">this is the set of things  to the left of {  in the thing in custom.css</p>
<pre><code class="language-css">.modulename .class  div &gt;ul {
   color: blue;
}
</code></pre>
<p dir="auto">so leading dot means class name<br />
no dot means html tag    img, div, span ul, li, table, tr, whatever</p>
<p dir="auto">leading # means id</p>
<pre><code> &lt;div id="something"
</code></pre>
<p dir="auto">#something</p>
<p dir="auto">then u can find children or   anyhow…</p>
<p dir="auto">the dev window tool will allow you select the content element u want, and see the css tree  on the right column.<br />
css is inheritance based…</p>
<p dir="auto">main.css is the base<br />
module provided css is next, (may replace/override) prior  instances<br />
then custom.css is last , always wins (well, sometimes!)</p>
<p dir="auto">so the right column is  base at the bottom and then things on top of it…<br />
each ‘thing’ will tell u where it came from  (file, main.css, modulename.css, or custom.css</p>
<p dir="auto">you can type new styles in the top right window,click, type color enter and then u will be in the value side and there will be a dropdown of possible predefined values…</p>
<p dir="auto">you can control anything and everything from here<br />
and then you can copy paste everything in that top box to custom.css and then u put the selector wrapper around it…</p>
]]></description><link>https://forum.magicmirror.builders/post/107122</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107122</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Thu, 12 Jan 2023 13:40:42 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-network-signal coloring the icon on Wed, 11 Jan 2023 01:58:33 GMT]]></title><description><![CDATA[<p dir="auto">Wish I could figure out the CSS stuff.  Sometimes it seems so simple and others I have no clue how to even begin.</p>
]]></description><link>https://forum.magicmirror.builders/post/107121</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107121</guid><dc:creator><![CDATA[plainbroke]]></dc:creator><pubDate>Wed, 11 Jan 2023 01:58:33 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-network-signal coloring the icon on Mon, 09 Jan 2023 19:22:17 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/alphanet" aria-label="Profile: alphanet">@<bdi>alphanet</bdi></a></p>
<p dir="auto">Thank you very much for your reply and recommandation sdetweil.</p>
<p dir="auto">Your link seems very interesting and should help me to learn plenty of things about the Magic Mirror and to solve the color of MMM_network-signal.</p>
]]></description><link>https://forum.magicmirror.builders/post/107111</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107111</guid><dc:creator><![CDATA[alphanet]]></dc:creator><pubDate>Mon, 09 Jan 2023 19:22:17 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-network-signal coloring the icon on Sun, 08 Jan 2023 21:46:09 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/alphanet" aria-label="Profile: alphanet">@<bdi>alphanet</bdi></a> never edit the code. u can do this in custom.css</p>
<p dir="auto">sometimes there is a class to override, sometimes not, but you can use html tag names,  IDs  …</p>
<p dir="auto">see<br />
<a href="https://forum.magicmirror.builders/topic/14862/help-with-a-couple-css-issues?_=1673214232124">https://forum.magicmirror.builders/topic/14862/help-with-a-couple-css-issues?_=1673214232124</a></p>
]]></description><link>https://forum.magicmirror.builders/post/107093</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107093</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sun, 08 Jan 2023 21:46:09 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-network-signal coloring the icon on Sun, 08 Jan 2023 21:39:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bursucel" aria-label="Profile: Bursucel">@<bdi>Bursucel</bdi></a><br />
Thank you very much for your reply.<br />
Here’s the 58 line of the MMM-network-signal .js file :<br />
connStatus.style = “text-align:center;font-size:0.65”;<br />
Should I add a key:value like :       color:#00FF00         -&gt;<br />
connStatus.style = “text-align:center;font-size:0.65;color:#00FF00”;<br />
Thank you in advance for your confirmation.</p>
]]></description><link>https://forum.magicmirror.builders/post/107092</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107092</guid><dc:creator><![CDATA[alphanet]]></dc:creator><pubDate>Sun, 08 Jan 2023 21:39:10 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-network-signal coloring the icon on Sun, 08 Jan 2023 04:33:29 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/alphanet" aria-label="Profile: alphanet">@<bdi>alphanet</bdi></a><br />
Look inside the MMM-network-signal.js and add a colour code there ( RGB format # xxxxxx).<br />
Try at line 58.</p>
]]></description><link>https://forum.magicmirror.builders/post/107079</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/107079</guid><dc:creator><![CDATA[Bursucel]]></dc:creator><pubDate>Sun, 08 Jan 2023 04:33:29 GMT</pubDate></item></channel></rss>