<?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[Custom CSS for weather when I have 2]]></title><description><![CDATA[<p dir="auto">Hi mates, I’m using 2 modules of .weather at the same time ( current and daily) but I only can manage the ccs of the Daily one):</p>
<p dir="auto">.weather  {<br />
font-size: 30px;<br />
}<br />
<img src="/assets/uploads/files/1720211689572-c07843bd-c654-40c5-96dc-f237eced01d6-image.png" alt="c07843bd-c654-40c5-96dc-f237eced01d6-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">I tried to put a “classes: name” but didnt work. Looking on Browser Inspector the module es the number 6 but I can’t find any way to put that on the custom.css successfully.</p>
<p dir="auto">Y only want this two moudles with the same font-size gf 30px . Any one can help me?</p>
]]></description><link>https://forum.magicmirror.builders/topic/18859/custom-css-for-weather-when-i-have-2</link><generator>RSS for Node</generator><lastBuildDate>Wed, 15 Jul 2026 07:17:16 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/18859.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 05 Jul 2024 20:35:07 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Custom CSS for weather when I have 2 on Fri, 05 Jul 2024 22:52:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/pritikin71" aria-label="Profile: pritikin71">@<bdi>pritikin71</bdi></a> classes goes after module:</p>
<p dir="auto">right?</p>
<pre><code class="language-js">{
module : " calendar",
classes:"foo",
config: {
.
.
.
}
}
</code></pre>
<p dir="auto">css</p>
<pre><code class="language-css">.foo .....   {   (NOT .weather)
...
}
</code></pre>
<p dir="auto">you can ALSO use the ID value assigned to the module<br />
the selector for id is</p>
<pre><code class="language-css">#id ... {
...
}
</code></pre>
<p dir="auto">I use this cheatsheet to help me remember<br />
<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">everthing before the {<br />
is called the selector clause… because is ‘selects’ the elements of the page doc, that the stuff INSIDE the {} will be applied to</p>
<pre><code class="language-text">. = class
# = id
: is the prefix for special elements 
[ x ] means element with an attribute of x   &lt;div x="foo"/&gt;
nothing = tag name (table, ul, li, p, ....div)
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/118735</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/118735</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Fri, 05 Jul 2024 22:52:00 GMT</pubDate></item></channel></rss>