Read the statement by Michael Teeuw here.
Newsfeed size
-
@Mykle1 not exactly. I want my entire newsfeed bigger. Not just the headlines. This is the original (https://www.dropbox.com/s/nzb2o5kecn6gfdy/Screenshot_20200317_065226_com.realvnc.view![alt
Then by the changes made in the before mentioned css I get this https://www.dropbox.com/s/pxnuosggy7g24q7/Screenshot_20200317_065703_com.realvnc.viewer.android.jpg?dl=0
But the actual news is still same size… -
Assuming we are talking about the default
newsfeed
module, I could only identify two classes.The title
.newsfeed .bright.medium.light { font-size: 60px; line-height: 60px; }
And the source
.newsfeed .light.small.dimmed { font-size: 60px; line-height: 60px; }
I’m not seeing another. As you can see from my picture both rules are working. Are you using BOTH of these?
.newsfeed .bright.medium.light { font-size: 60px; line-height: 60px; } .newsfeed .light.small.dimmed { font-size: 60px; line-height: 60px; }
Maybe I’m using an old version? Open the dev console when the mirror is running and identify the third class, if there is one.
-
@Mykle1
None of those help. The first gives a bigger headline, as I’ve showed in previous posts, the other one a bigger name of news channel/time of occurrence.
In dev I see this -
This post is deleted! -
-
@Kenta posting pictures does not work… u have to link to them uploaded somewhere else
-
@sdetweil
As previously stated, I’m a complete n00b. It’s sad because I want to be a nerd 😂
Yeah I’ve tried unsuccessfully to post images, but this last one was a link to a Dropbox image. Did it not work.? -
@Kenta ok, didn’t see the last as a link.
For Dropbox, if u change the url, dl=0, to dl=1, then it will show here…
-
-
@Kenta the code for the source title and date/time is
sourceAndTimestamp.className = “newsfeed-source light small dimmed”;
newsfeed-source doesn’t exist in main.css
light is
.light { font-family: "Roboto Condensed", sans-serif; font-weight: 300; }
small is
.small { font-size: 20px; line-height: 25px; }
and dimmed is
.dimmed { color: #666; }
so, to change the SIZE you need to change the value for class ‘small’
so, for example
in ~/MagicMirror/css/custom.css put.newsfeed .small { font-size: 40px; line-height: 45px; }
for the title text the code is
title.className = “newsfeed-title bright medium light” +
newsfeed-title doesn't exist so 'medium' is the size
.medium {
font-size: 30px;
line-height: 35px;
}so change that to, in custom.css
.medium {
font-size: 50px;
line-height: 55px;
}so now, custom.css looks like this (sizes just for example)
.newsfeed .small {
font-size: 40px;
line-height: 45px;
}
.newsfeed .medium {
font-size: 50px;
line-height: 55px;
}