Read the statement by Michael Teeuw here.
newsfeed - hide 3rd line
-
Hi,
after upgrading to 2.15 i have an additional line in the “newsfeed” module.
How is that possible to hide the 3rd line? Didnt found any config possibility. -
@oberfragger ,try this in config.js;
showDescription: false,
wrapDescription: false, -
@george said in newsfeed - hide 3rd line:
showDescription: false,
wrapDescription: false,Thanks for your reply. No luck so far.
-
@oberfragger said in newsfeed - hide 3rd line:
How is that possible to hide the 3rd line? Didnt found any config possibility.
Add this to your custom.css file. Tested and confirmed.
.newsfeed-desc.small.light { display:none; }
Peace!
-
As an explanation:
Normally you should solve this as described by @George, but there is currently a bug in MagicMirror v2.15, so that only the solution from @Mykle1 works.
That has already been fixed and will come with the next MagicMirror release on July 1st, 2021 (see https://github.com/MichMich/MagicMirror/issues/2517).
-
@karsten13 and @Mykle1 : Thanks for your answer.
-
@mykle1 I can confirm- its working.
-