<?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-Carousel Pagination Icons]]></title><description><![CDATA[<p dir="auto">I am using MMM-Carousel to rotate through various slides in my Magic Mirror implementation.<br />
<img src="https://markwheeler.com/wp-content/uploads/2024/07/mirror.jpg" alt="image url" class=" img-fluid img-markdown" /><br />
I have updated some of the code in the MMM-Carousel.js</p>
<p dir="auto">The relevant code added:<br />
// Line 75</p>
<pre><code>icons: [[]],
</code></pre>
<p dir="auto">// Line 538</p>
<pre><code>this.toggleTimer();
</code></pre>
<p dir="auto">// Line 587</p>
<pre><code>label.innerHTML = "&lt;i class='"+Object.values(this.config.icons)[i]+"' style='color: #74C0FC;'&gt;&lt;/i&gt;";
</code></pre>
<p dir="auto">This line replaces the display of the radio buttons with the specified icons in your config.js. The MMM-Carousel modification supports a new attribute of icons; my example config…</p>
<pre><code>{
module: "MMM-Carousel",
position: "bottom_bar", // Required only for navigation controls
config: {
transitionInterval: 20000,
showPageIndicators: true,
showPageControls: true,
ignoreModules: ["alert"],
mode: "slides",
slides: {
"calendar": ["clock", "MMM-GoogleCalendar"],
"weather": ["MMM-AccuWeatherForecastDeluxe"],
"sports": ["clock", "MMM-MyScoreboard", "MMM-MyStandings"],
"news": ["clock", "newsfeed", "MMM-Reddit-News-Ticker"],
"lights": ["mmm-hue-lights"],
"moode": ["MMM-WebView"]
                },
icons: { 
1: "fa-solid fa-calendar-days",
2: "fa-solid fa-sun",	
3: "fa-solid fa-baseball",
4: "fa-solid fa-newspaper",
5: "fa-solid fa-lightbulb",
6: "fa-solid fa-compact-disc fa-spin"
}, 
}
}
</code></pre>
<p dir="auto">The icons array should be in the format shown with the icon class as referenced over at Font Awesome.</p>
<p dir="auto">Additionally, I am integrating my mirror with Moode Audio. I adjusted the code to pause the rotation/transition timers when an icon is selected. This allows for interaction with the Moode interace. The Moode “page” itself is referenced using the MMM-Webview module.</p>
<pre><code>{
      module: 'MMM-WebView',
      position: 'fullscreen_above',
      config: {
        url: 'http://mood.local',
        width: '1024px',
        height: '600px',
      },
    }
</code></pre>
<p dir="auto"><a href="https://markwheeler.com/wp-content/uploads/2024/07/MMM-Carousel.zip" target="_blank" rel="noopener noreferrer nofollow ugc">MMM-Carousel.zip</a></p>
<p dir="auto">I also adjusted the CSS a bit for ‘readability’ of the icons.</p>
<pre><code>.slider-pagination label {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-block;
  background: rgb(255 255 255 / 20%);
  margin: 0 2px;
  border: solid 1px rgb(255 255 255 / 40%);
  cursor: pointer !important;
}
</code></pre>
]]></description><link>https://forum.magicmirror.builders/topic/18876/mmm-carousel-pagination-icons</link><generator>RSS for Node</generator><lastBuildDate>Sat, 18 Apr 2026 10:35:05 GMT</lastBuildDate><atom:link href="https://forum.magicmirror.builders/topic/18876.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 14 Jul 2024 15:03:21 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to MMM-Carousel Pagination Icons on Wed, 16 Apr 2025 17:55:52 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> , <a class="plugin-mentions-user plugin-mentions-a" href="/user/karsten13" aria-label="Profile: karsten13">@<bdi>karsten13</bdi></a>  and <a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a> , thank you really for your help with this matter. I will test tomorrow and hope all this story will help other user in the future to profit from all your great job!</p>
]]></description><link>https://forum.magicmirror.builders/post/125915</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/125915</guid><dc:creator><![CDATA[com1cedric]]></dc:creator><pubDate>Wed, 16 Apr 2025 17:55:52 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Carousel Pagination Icons on Wed, 16 Apr 2025 14:31:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/com1cedric" aria-label="Profile: com1cedric">@<bdi>com1cedric</bdi></a> MMM-page-indicator was updated recently so you do not have to use the nth-child stuff anymore. Checkout the latest version and the readme. I have added some samples of how you can use it. You should reference the svg as either <a class="plugin-mentions-user plugin-mentions-a" href="/user/sdetweil" aria-label="Profile: sdetweil">@<bdi>sdetweil</bdi></a>  or <a class="plugin-mentions-user plugin-mentions-a" href="/user/karsten13" aria-label="Profile: karsten13">@<bdi>karsten13</bdi></a>  has shown and it should work.</p>
]]></description><link>https://forum.magicmirror.builders/post/125900</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/125900</guid><dc:creator><![CDATA[mumblebaj]]></dc:creator><pubDate>Wed, 16 Apr 2025 14:31:55 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Carousel Pagination Icons on Tue, 15 Apr 2025 19:16:39 GMT]]></title><description><![CDATA[<p dir="auto">I did a test with default calendar and custom.css:</p>
<pre><code class="language-css">.calendar div.module-content::after {
  content: url("/css/k13.svg");
}
</code></pre>
<p dir="auto">or</p>
<pre><code class="language-css">.calendar div.module-content {
  content: url("/css/k13.svg");
}
</code></pre>
<p dir="auto">which works (svg is visible).</p>
<p dir="auto">So maybe something with your css concerning the child-stuff is wrong (my css knowledge is to bad to help here)</p>
]]></description><link>https://forum.magicmirror.builders/post/125863</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/125863</guid><dc:creator><![CDATA[karsten13]]></dc:creator><pubDate>Tue, 15 Apr 2025 19:16:39 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Carousel Pagination Icons on Tue, 15 Apr 2025 11:44:51 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/com1cedric" aria-label="Profile: com1cedric">@<bdi>com1cedric</bdi></a> again, we wont load the file path url,</p>
<p dir="auto">/home/… in not one of out supported folders</p>
<p dir="auto">it has to be MagicMirror web  server based , from the MagicMirror folder as root (/)</p>
<pre><code>url('/css/house.svg')
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/125851</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/125851</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Tue, 15 Apr 2025 11:44:51 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Carousel Pagination Icons on Tue, 15 Apr 2025 08:17:57 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 <a class="plugin-mentions-user plugin-mentions-a" href="/user/karsten13" aria-label="Profile: karsten13">@<bdi>karsten13</bdi></a></p>
<p dir="auto">thank you for your inputs.</p>
<p dir="auto">I tried it and put the image (downloaded from <a href="http://flaticon.com" target="_blank" rel="noopener noreferrer nofollow ugc">flaticon.com</a>) on the CSS file</p>
<p dir="auto"><img src="/assets/uploads/files/1744704665366-capture-d-e-cran-2025-04-15-a-10.03.26.jpg" alt="Capture d’écran 2025-04-15 à 10.03.26.jpg" class=" img-fluid img-markdown" /></p>
<p dir="auto">When I search for it in the Chromium browser (to be sure the URL is correct), it works</p>
<p dir="auto"><img src="/assets/uploads/files/1744704716445-capture-d-e-cran-2025-04-15-a-10.04.42.jpg" alt="Capture d’écran 2025-04-15 à 10.04.42.jpg" class=" img-fluid img-markdown" /></p>
<p dir="auto">but when I put this path in the custom.css files, with full or shorten path, it does not appear…<br />
<img src="/assets/uploads/files/1744704850040-capture-d-e-cran-2025-04-15-a-10.13.37.jpg" alt="Capture d’écran 2025-04-15 à 10.13.37.jpg" class=" img-fluid img-markdown" /></p>
<p dir="auto">in the console, I do not find anything suspicious (I only use mm-page and mm-page-indicator, and no carrousel).</p>
<p dir="auto"><img src="/assets/uploads/files/1744705022989-capture-d-e-cran-2025-04-15-a-10.16.37.jpg" alt="Capture d’écran 2025-04-15 à 10.16.37.jpg" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.magicmirror.builders/post/125850</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/125850</guid><dc:creator><![CDATA[com1cedric]]></dc:creator><pubDate>Tue, 15 Apr 2025 08:17:57 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Carousel Pagination Icons on Mon, 14 Apr 2025 20:27:41 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/karsten13" aria-label="Profile: karsten13">@<bdi>karsten13</bdi></a> ok, I forgot we are restrictive</p>
]]></description><link>https://forum.magicmirror.builders/post/125846</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/125846</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Mon, 14 Apr 2025 20:27:41 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Carousel Pagination Icons on Mon, 14 Apr 2025 20:23:02 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/com1cedric" aria-label="Profile: com1cedric">@<bdi>com1cedric</bdi></a></p>
<p dir="auto">the <code>/icons</code> subfolder will not work, you have to use one of <a href="https://github.com/MagicMirrorOrg/MagicMirror/blob/master/js/server.js#L75" target="_blank" rel="noopener noreferrer nofollow ugc">these</a></p>
]]></description><link>https://forum.magicmirror.builders/post/125845</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/125845</guid><dc:creator><![CDATA[karsten13]]></dc:creator><pubDate>Mon, 14 Apr 2025 20:23:02 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Carousel Pagination Icons on Mon, 14 Apr 2025 13:00:06 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/com1cedric" aria-label="Profile: com1cedric">@<bdi>com1cedric</bdi></a> can you open the developers window (ctrl-shift-i), select the console tab<br />
and put caro in the filter field to limit messages to the carousel module</p>
<p dir="auto">this info might be of help on the image selection<br />
<a href="https://elfsight.com/blog/svg-png-jpeg-choose-the-image-format-for-your-website/" target="_blank" rel="noopener noreferrer nofollow ugc">https://elfsight.com/blog/svg-png-jpeg-choose-the-image-format-for-your-website/</a></p>
]]></description><link>https://forum.magicmirror.builders/post/125836</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/125836</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Mon, 14 Apr 2025 13:00:06 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Carousel Pagination Icons on Mon, 14 Apr 2025 12:51:30 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><br />
OK, I looked into it, thank you.</p>
<p dir="auto">Now, I have this images from Fontawesome. It looks nice, but I would like to be able to use other image if needed.<br />
<img src="/assets/uploads/files/1744634216580-capture-d-e-cran-2025-04-14-a-14.15.41.jpg" alt="Capture d’écran 2025-04-14 à 14.15.41.jpg" class=" img-fluid img-markdown" /></p>
<p dir="auto">For example, I would replace the “sun” with a picture “04n.png” in the “icons” forder on my raspberry.</p>
<p dir="auto"><img src="/assets/uploads/files/1744634475800-capture-d-e-cran-2025-04-14-a-14.35.10.jpg" alt="Capture d’écran 2025-04-14 à 14.35.10.jpg" class=" img-fluid img-markdown" /></p>
<p dir="auto">I tried to change line 251 with 250 in the custom.css file<br />
<img src="/assets/uploads/files/1744634724184-capture-d-e-cran-2025-04-14-a-14.45.08.jpg" alt="Capture d’écran 2025-04-14 à 14.45.08.jpg" class=" img-fluid img-markdown" /></p>
<p dir="auto">Now, the result is, that the sun has disappeared (correct), but just has been replaced with a gap.<br />
<img src="/assets/uploads/files/1744634917298-capture-d-e-cran-2025-04-14-a-14.47.43.jpg" alt="Capture d’écran 2025-04-14 à 14.47.43.jpg" class=" img-fluid img-markdown" /></p>
<p dir="auto">do you maybe see a mistake in my custom.css file? the problem is maybe between lines 221 and 240. this is strange…</p>
]]></description><link>https://forum.magicmirror.builders/post/125835</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/125835</guid><dc:creator><![CDATA[com1cedric]]></dc:creator><pubDate>Mon, 14 Apr 2025 12:51:30 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Carousel Pagination Icons on Mon, 14 Apr 2025 12:06:51 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/com1cedric" aria-label="Profile: com1cedric">@<bdi>com1cedric</bdi></a> see here, this is good info</p>
<p dir="auto"><a href="https://forum.magicmirror.builders/post/125833">https://forum.magicmirror.builders/post/125833</a></p>
]]></description><link>https://forum.magicmirror.builders/post/125834</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/125834</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Mon, 14 Apr 2025 12:06:51 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Carousel Pagination Icons on Mon, 14 Apr 2025 11:43:47 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/com1cedric" aria-label="Profile: com1cedric">@<bdi>com1cedric</bdi></a> i will test this out and get back</p>
<p dir="auto">icons are very small images</p>
]]></description><link>https://forum.magicmirror.builders/post/125832</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/125832</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Mon, 14 Apr 2025 11:43:47 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Carousel Pagination Icons on Mon, 14 Apr 2025 06:31:40 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/125810">MMM-Carousel Pagination Icons</a>:</p>
<blockquote>
<p dir="auto">url(‘/icons/circle.png’)</p>
</blockquote>
<p dir="auto">Thank you very much Sam.</p>
<p dir="auto">currently, I have the following command (which works well and shows an icon from FontAwesom) in custom.css:</p>
<p dir="auto">.MMM-page-indicator div.module-content div i:nth-child(7)::after {<br />
content: “\f207”;<br />
font-family: FontAwesome;<br />
color: #FF4433;<br />
}</p>
<p dir="auto">After putting an image called “olympic.png” in the “MagicMirror/icons” folder, it still does not appear if I write:</p>
<p dir="auto">.MMM-page-indicator div.module-content div i:nth-child(7)::after {<br />
url(‘/icons/olympics.png’);<br />
}</p>
<p dir="auto">Do I habe to still use “content:” before or something else?</p>
<p dir="auto">PS. sorry for asking, I am quite new in this CSS topic</p>
]]></description><link>https://forum.magicmirror.builders/post/125830</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/125830</guid><dc:creator><![CDATA[com1cedric]]></dc:creator><pubDate>Mon, 14 Apr 2025 06:31:40 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Carousel Pagination Icons on Sun, 13 Apr 2025 16:47:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/com1cedric" aria-label="Profile: com1cedric">@<bdi>com1cedric</bdi></a> just point the url() to the file</p>
<pre><code>url('/folder_in_mm_tree/xxx.jpg/png/gif as appropriate')
</code></pre>
<p dir="auto">note the MM web server root is ~/MagicMirror</p>
<p dir="auto">so the files have to be in THAT folder tree<br />
you can LINK  files/folders outside into the MM tree with the --&gt;<strong>ln</strong>&lt;-- command</p>
<h3>so, assume you made a</h3>
<pre><code>MagicMirror/icons
</code></pre>
<p dir="auto">folder and in it is</p>
<pre><code>circle.png
</code></pre>
<p dir="auto">then you could use</p>
<pre><code>url('/icons/circle.png')
</code></pre>
<p dir="auto">or</p>
<pre><code>url('http://localhost:mm_port/icons/circle.png')  /* not this ONLY works IF the browser is on the SAME MACHINE as MM..*/
</code></pre>
<p dir="auto">if not you need the relative(url(‘/…’), OR have to hard code the MM machine address<br />
like this</p>
<pre><code>url('http://MM_IP_address:mm_port/icons/circle.png')
</code></pre>
<p dir="auto">if linked from the web use its complete url path</p>
]]></description><link>https://forum.magicmirror.builders/post/125810</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/125810</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sun, 13 Apr 2025 16:47:10 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Carousel Pagination Icons on Sun, 13 Apr 2025 16:29:50 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> Hello Sam, may I ask you one question about this topic? do you know how it would be possible to show an image stored on the Raspberry or linked from the web, instead of showing an icon from Fontawesome?</p>
]]></description><link>https://forum.magicmirror.builders/post/125809</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/125809</guid><dc:creator><![CDATA[com1cedric]]></dc:creator><pubDate>Sun, 13 Apr 2025 16:29:50 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Carousel Pagination Icons on Sun, 06 Apr 2025 20:34:29 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> one small step!</p>
]]></description><link>https://forum.magicmirror.builders/post/125652</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/125652</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sun, 06 Apr 2025 20:34:29 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Carousel Pagination Icons on Sun, 06 Apr 2025 14:42:27 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 just to note, MMM-pages is zero based. This will need to be updated as well. If I understand MMM-Carousel correct, it is also zero based.</p>
]]></description><link>https://forum.magicmirror.builders/post/125649</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/125649</guid><dc:creator><![CDATA[mumblebaj]]></dc:creator><pubDate>Sun, 06 Apr 2025 14:42:27 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Carousel Pagination Icons on Sun, 06 Apr 2025 14:33:40 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> Yes, that is correct. I added a classname <code>page-${i}</code>.  But the standard code was always zero based and I do not want to update that. It is tied in with MMM-pages and seems like it works with others as well.</p>
<pre><code>start() {
  this.curPage = 0;
  this.mmmPagesDetected = false;
},
</code></pre>
]]></description><link>https://forum.magicmirror.builders/post/125648</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/125648</guid><dc:creator><![CDATA[mumblebaj]]></dc:creator><pubDate>Sun, 06 Apr 2025 14:33:40 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Carousel Pagination Icons on Sun, 06 Apr 2025 14:16:24 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> page- was never there</p>
]]></description><link>https://forum.magicmirror.builders/post/125647</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/125647</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sun, 06 Apr 2025 14:16:24 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Carousel Pagination Icons on Sun, 06 Apr 2025 14:00: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> Yeah, i would agree. Changing that logic now may have some repercussions for users already using the module.</p>
]]></description><link>https://forum.magicmirror.builders/post/125645</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/125645</guid><dc:creator><![CDATA[mumblebaj]]></dc:creator><pubDate>Sun, 06 Apr 2025 14:00:56 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Carousel Pagination Icons on Sun, 06 Apr 2025 13:28:52 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> i will say, i think for humans. 0 based is unfriendly</p>
]]></description><link>https://forum.magicmirror.builders/post/125641</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/125641</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sun, 06 Apr 2025 13:28:52 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Carousel Pagination Icons on Sun, 06 Apr 2025 12:54:22 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> i updated  my post</p>
]]></description><link>https://forum.magicmirror.builders/post/125640</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/125640</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sun, 06 Apr 2025 12:54:22 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Carousel Pagination Icons on Sun, 06 Apr 2025 12:32:14 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> Correct. Although, MMM-page-indicator is 0 based, same as MMM-pages, so page-0 would be page 1 etc.</p>
]]></description><link>https://forum.magicmirror.builders/post/125639</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/125639</guid><dc:creator><![CDATA[mumblebaj]]></dc:creator><pubDate>Sun, 06 Apr 2025 12:32:14 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Carousel Pagination Icons on Sun, 06 Apr 2025 12:53:51 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> ah, what you meant to say is</p>
<pre><code class="language-css">.fa.indicator.page-n
</code></pre>
<p dir="auto">where n is a number for each page found, starting at 0</p>
<p dir="auto">page-0 for first page<br />
page-1 for second page<br />
etc</p>
]]></description><link>https://forum.magicmirror.builders/post/125638</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/125638</guid><dc:creator><![CDATA[sdetweil]]></dc:creator><pubDate>Sun, 06 Apr 2025 12:53:51 GMT</pubDate></item><item><title><![CDATA[Reply to MMM-Carousel Pagination Icons on Sun, 06 Apr 2025 12:12:44 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> Not sure if I understand you properly but the other pages would default to the standard circle. The changes I made allows you to target specific pages if you want to change the icon, add animations etc. A little easier to target individuals.</p>
]]></description><link>https://forum.magicmirror.builders/post/125637</link><guid isPermaLink="true">https://forum.magicmirror.builders/post/125637</guid><dc:creator><![CDATA[mumblebaj]]></dc:creator><pubDate>Sun, 06 Apr 2025 12:12:44 GMT</pubDate></item></channel></rss>