MagicMirror² v2.14.0 is available! For more information about this release, check out this topic.
Newsfeed custom.css
-
Hi,
I am trying to change the font size of the newsfeed. That is my custom.css, the font size is still the same. Any ideas?
body {
.newsfeed .medium
{
font-size: 15px;
line-height: 20px;
}
}
-
@andyyy said in Newsfeed custom.css:
Hi,
I am trying to change the font size of the newsfeed. That is my custom.css, the font size is still the same. Any ideas?
body {
.newsfeed .medium
{
font-size: 15px;
line-height: 20px;
}
}You don’t put the
.newsfeed
inside thebody{}
this should work better :
.newsfeed .medium {font-size: 15px; line-height: 20px; }