If the same code works in any another position but there I’m guessing that either you have something “above” the buttons that hinders it to be clicked on or you have a formatting error somewhere that renders the buttons not clickable/functioning.
Read the statement by Michael Teeuw here.
Posts
-
RE: iFrame Form Issue
-
RE: I know it's here but I cannot seem to find it.....
If you are okay with the “same” output on both mirrors you can just start a webbrowser in fullscren on the other mirror and open the page from the itx one.
Since the magicmirror is basically a webserver hosting one webpage it can be open on an infinit amount of computers at the same time.
-
RE: Font struggles.
You have one punctuation mark to much
Only two . . not three …
../fonts/Yourfile.ttfIf you add your font file in the CSS folder you can use just the filename without any folder pathways
Yourfile.ttfAnd you can skip the
localpart, just use the urlAnd another issue, you are using smart qoutes in the code, that doesn’t work. Turn of smart quotes in your text-editor.
Notice the difference
Wrong
“DancingScript-Regular”
Correct
“DancingScript-Regular” -
RE: Adjusting font size in notification message
Try
.ns-box.light {font-size: 120px} .ns-box.thin {font-size: 100px} -
RE: "Embrace" mirror touchscreen - How'd they do it?
Best guess is that the glass is custom made, probably layered with thin layers of first the mirror coating at the back, then glass, then the capacitive mesh and then more glass on top. It would require the capacative mesh/grid to disregard any background noise from the mirror coating. But that is probably not an issue if the hardware and software of the touchpanel is custom ordered with those conditions.
-
RE: Input ideas
IR touch frame, or add physical buttons to the raspberrys gpio pins and use the button module (can’t remember the name at the moment).
-
RE: Wrong font in newsfeed
Folder path is misdirected, try this
body { @font-face { font-family: “Verdana”; font-style: normal; font-weight: 100; src: local(“Verdana”), url("../fonts/Verdana.ttf") format(“truetype”); }, .newsfeed { font-family: Verdana; }, } -
RE: Border/Not fullscreen
As above or no border at all
body { margin: 0; height: 100%; width: 100%; }You only add the ( ) part when using calc
-
RE: Mirror and bright conditions
@azrael yes, from a regular glass shop, Ask for manufacturer and product name, that way you can google the specs yourself. (Thats what I did)
-
RE: Mirror and bright conditions
You need a mirror with a higher lighttransmission. The drawback is that more of the monitors backlight will show when it gets darker in the room.
30% is a really high number for lighttransmission (I have 3% and that is as you describe hard to see when in a light room). 12-20% will work well in normal lighting conditions.
-
RE: where are the pictures for the weather forecast modules?
My bad, it isn’t font awesome for the weather module. The icons gets gathered from the openweather api :
-
RE: where are the pictures for the weather forecast modules?
@thijsmathijs they aren’t pictures per say, they are symbols from a font.
-
RE: Changing Custom Font Type Within Magic Mirror
check you have the spelling correct for the filename, and use only the ttf file (I don’t know why there is two different format files for the same font anyways)
-
RE: Changing Custom Font Type Within Magic Mirror
Updates to the magicmirror software.
You can keep the changes in the main.css, but you will get an error the day you try to update the magicmirror to a newer version.Try using this :
@font-face{ font-family: Luxia; src: url("../fonts/Luxia-Display.ttf") format("truetype"); }Note that the file path is based on where your css files is and where the fonts are.
You can place the fonts directly in to the css folder, if you do that the file path (url) would be like this :
@font-face{ font-family: Luxia; src: url("Luxia-Display.ttf") format("truetype"); } -
RE: Changing Custom Font Type Within Magic Mirror
Yes, only the custom.css (anything written in the custom.css will override the same values in main.css)
And if you edit the main.css and update your mirror the update will overwrite the main.css and your changes within. This doesn’t happen with custom.css.To see where you went wrong, pleas post your custom.css file.
But common things to adress, search path to the font file, the font file sets the format, what does your files end with?
place new css-code after body{}
-
RE: My Magic Mirror - 100x70cm
@solelo look at the pictures and you’ll see that is fitted with four screws to hold it to the frame :)
-
RE: Glue Mirror for wooden case
Go to a shop that replace car windshields and ask them for some of the tape/glue they use ro mount the windshields. Strong stuff!
-
RE: 24" Frame Mirror
Touchfoil doesn’t work beneath the mirrorglass due to the metallic coating.
Even the mirror supplier that was linked earlier says it has to be an overlay (i.e if you use a foil it should be on another layered glass over the mirror itself)
Touchfoils are basically a sheet of transparent plastic with many really really thin wires running across the surface. Gives you around 98-99% transparency.
-
RE: I cant load 3rd party modules to my smart mirror.
@Brenj you are missing a
:between colored and true
And between
Reloadinterval and 18000000