A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
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; }