Read the statement by Michael Teeuw here.
MMM-NewsFeedTicker
-
@justjim1220 OK I ran the update succesfully by deleting the CSS.
However I would like to revert to how it was looking before the update (static image on the left and smaller scrolling text). :grimacing_face:
How do I do that please? -
If you did not make any changes to the original files, run
git pull && npm install
If you made changes to any of the original files that you want to keep, rename those files, then run
git pull && npm install
if there isn’t anything you need saved, delete the MMM-NewsFeedTicker directory and run the
git clone '. . .'
-
@justjim1220 that’s what I already did, but I see you now fixed that. :)
Thanks.
-
Looking good, other than the logo now appearing centered on final position - I have deleted all custom css…
-
@bkeyport so that’s not only me?
I thought I messed up something in the CSS.
-
@Cr4z33 Nope, not just you.
Fixed it, actually. added the line “left: 0px;” in my custom css in the “.MMM-NewsFeedTicker .image” section… it’ll force the image to the left.
-
@bkeyport oh great doing it now thanks.
-
fwiw, it could have happened as adjustments made to the code for a feature I asked for… :innocent look:
-
Any way to make the logo smaller? It got huge with using the keyframes bit
-
yes, as a matter of fact. Fixes the centering too if you have that problem:
custom.css in css subdirectory:
.MMM-NewsFeedTicker .image {
position: absolute;
display: inline-block;
vertical-align: middle;
margin-left: 0;
height: 40px; /* set to your image size */
z-index: 1;
background-color: #FFF;
bottom: 0;
left: 0px;}