MagicMirror Forum
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • 3rd-Party-Modules
    • Donate
    • Discord
    • Register
    • Login
    A New Chapter for MagicMirror: The Community Takes the Lead
    Read the statement by Michael Teeuw here.

    Newsfeed size

    Scheduled Pinned Locked Moved Custom CSS
    29 Posts 4 Posters 10.7k Views 4 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • K Offline
      Kenta @sdetweil
      last edited by

      @sdetweil thank you for trying, but I don’t know where to look… Total n00b…
      This is from my config.js
      {
      module: “newsfeed”,
      position: “bottom_bar”,
      config: {
      feeds: [
      {
      title: “NRK Nyheter”,
      url: “https://www.nrk.no/nyheter/siste.rss”
      }
      ],

      S 1 Reply Last reply Reply Quote 0
      • S Offline
        sdetweil @Kenta
        last edited by sdetweil

        @Kenta understand… each module gets to do its own thing… hardly any are documented well…

        all modules code are in the ~/MagicMirror/modules folder

        all the built in ones are in the modules/default folder…

        each module has a file with the name matching the module name… so in this case

        ~/MagicMirror/modules/default/newsfeed/newsfeed.js

        setting the UI component css ‘class’ is done y setting the ‘className’ variable of the element

        so, you edit the file and search for className , and there may be multiple… (as there are in this case)…

        Sam

        How to add modules

        learning how to use browser developers window for css changes

        1 Reply Last reply Reply Quote 0
        • Mykle1M Offline
          Mykle1 Project Sponsor Module Developer @Kenta
          last edited by Mykle1

          @Kenta said in Newsfeed size:

          Nope. Still just the headlines. Does the css need to contain more than just the code you suggested?

          So, I second guessed myself and checked again. The code above does what you want for the headlines. Are you saying you want the New York Times, 2 hours ago: portion as well? In that case, add this as well.

          .newsfeed .light.small.dimmed {
            font-size: 60px;
            line-height: 60px;
          }
          

          Screenshot

          Create a working config
          How to add modules

          K 1 Reply Last reply Reply Quote 0
          • K Offline
            Kenta @Mykle1
            last edited by Kenta

            @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…

            Mykle1M 1 Reply Last reply Reply Quote 0
            • Mykle1M Offline
              Mykle1 Project Sponsor Module Developer @Kenta
              last edited by

              @Kenta

              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.

              Create a working config
              How to add modules

              K 1 Reply Last reply Reply Quote 0
              • K Offline
                Kenta @Mykle1
                last edited by Kenta

                @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 alt text

                K 1 Reply Last reply Reply Quote 0
                • K Offline
                  Kenta @Kenta
                  last edited by

                  This post is deleted!
                  1 Reply Last reply Reply Quote 0
                  • K Offline
                    Kenta
                    last edited by

                    this

                    S 1 Reply Last reply Reply Quote 0
                    • S Offline
                      sdetweil @Kenta
                      last edited by

                      @Kenta posting pictures does not work… u have to link to them uploaded somewhere else

                      Sam

                      How to add modules

                      learning how to use browser developers window for css changes

                      K 1 Reply Last reply Reply Quote 0
                      • K Offline
                        Kenta @sdetweil
                        last edited by

                        @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.?

                        S 3 Replies Last reply Reply Quote 0
                        • S Offline
                          sdetweil @Kenta
                          last edited by

                          @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…

                          Sam

                          How to add modules

                          learning how to use browser developers window for css changes

                          1 Reply Last reply Reply Quote 1
                          • S Offline
                            sdetweil @Kenta
                            last edited by

                            @Kenta said in Newsfeed size:

                            As previously stated, I’m a complete n00b

                            no problems, we all were…

                            Sam

                            How to add modules

                            learning how to use browser developers window for css changes

                            1 Reply Last reply Reply Quote 0
                            • S Offline
                              sdetweil @Kenta
                              last edited by sdetweil

                              @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;
                              }

                              Sam

                              How to add modules

                              learning how to use browser developers window for css changes

                              K C 2 Replies Last reply Reply Quote 0
                              • K Offline
                                Kenta @sdetweil
                                last edited by

                                @sdetweil
                                Thank you! That worked perfectly!

                                1 Reply Last reply Reply Quote 0
                                • C Offline
                                  cyberphox @sdetweil
                                  last edited by

                                  @sdetweil said in Newsfeed size:

                                  .newsfeed .small {
                                  font-size: 40px;
                                  line-height: 45px;
                                  }

                                  Why the heck isn’t this working for me!
                                  I’ve moved compliments module to lower_third region but i can’t seem to change the size of it

                                  Full time Dad, DJ and entertainer and lover of technology.

                                  S 1 Reply Last reply Reply Quote 0
                                  • S Offline
                                    sdetweil @cyberphox
                                    last edited by

                                    @cyberphox show me the css class setup you did… note that each module gets to choose there own class usage… so ‘small’ might not work for compliments… read the readme,

                                    or look at the
                                    main.css or
                                    compliments.css or
                                    last resort the compliments.js. file for class usage (search for className in the js file)

                                    sometimes the class usages is documented, and sometimes(most times) not

                                    Sam

                                    How to add modules

                                    learning how to use browser developers window for css changes

                                    C 1 Reply Last reply Reply Quote 0
                                    • C Offline
                                      cyberphox @sdetweil
                                      last edited by

                                      @sdetweil sorry i’ve been fighting with CSS all day and typed that in wrong…
                                      What I mean to say was I moved the newsfeed module to lower_third

                                      In custom.css I’ve tried:

                                      .newsfeed .small {
                                      font-size: 40px;
                                      line-height: 45px;
                                      }
                                      .newsfeed .medium {
                                      font-size: 50px;
                                      line-height: 55px;
                                      }

                                      Full time Dad, DJ and entertainer and lover of technology.

                                      1 Reply Last reply Reply Quote 0
                                      • C Offline
                                        cyberphox
                                        last edited by cyberphox

                                        I even tried this - thinking maybe the indent made a difference but nope!

                                        .newsfeed .small {
                                          font-size: 80px;
                                          line-height: 65px;
                                          }
                                        .newsfeed .medium {
                                          font-size: 70px;
                                          line-height: 75px;
                                          }
                                        

                                        Full time Dad, DJ and entertainer and lover of technology.

                                        S 1 Reply Last reply Reply Quote 0
                                        • S Offline
                                          sdetweil @cyberphox
                                          last edited by

                                          @cyberphox i would open the developers window, ctrl-shift-i or f12, and select the elements tab, and scroll thru to the needs feed objects and look at their classes and settings (the css tree is expand on the right as u select an item, nears to the element at the top (custom.css -> main.css ) to furthest at the bottom

                                          it solves so many problems to be able to just look at it

                                          Sam

                                          How to add modules

                                          learning how to use browser developers window for css changes

                                          1 Reply Last reply Reply Quote 0
                                          • C Offline
                                            cyberphox
                                            last edited by

                                            Oh I’ve been looking at the damn thing all day!

                                            newsfeed-title bright medium light seems to be one…if i could at least change something!

                                            Full time Dad, DJ and entertainer and lover of technology.

                                            S 1 Reply Last reply Reply Quote 0

                                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                                            With your input, this post could be even better 💗

                                            Register Login
                                            • 1
                                            • 2
                                            • 1 / 2
                                            • First post
                                              Last post
                                            Enjoying MagicMirror? Please consider a donation!
                                            MagicMirror created by Michael Teeuw.
                                            Forum managed by Sam, technical setup by Karsten.
                                            This forum is using NodeBB as its core | Contributors
                                            Contact | Privacy Policy