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.

    MMM-NewsFeedTicker

    Scheduled Pinned Locked Moved Utilities
    94 Posts 15 Posters 78.0k Views 14 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.
    • E Offline
      electros Project Sponsor @justjim1220
      last edited by

      @justjim1220
      Hi, this is what I add to custom.css

      MMM-NewsFeedTicker {
          height: 40px;
          background-color: black;
          margin-left: 20%;
      }
      .MMM-NewsFeedTicker .tickerbody {
          position: absolute;
          bottom: 7px;
        
      }
      .MMM-NewsFeedTicker .image {
        position: absolute;
        margin-left: 20%;
        bottom: 7px;
        height: 40px;
      }  
      

      but i find what the problem is:
      When i change the color of background to black just i hide background but that is not in same line like writing, is upper for that reason the writing is not hidden when go over the buttons. i change back the background to maroon and you can see the difference0_1540574544136_4.png

      justjim1220J 1 Reply Last reply Reply Quote 0
      • justjim1220J Offline
        justjim1220 Module Developer @electros
        last edited by

        @electros

        ok,

        change background-color to background: none;
        and,
        change position back to relative under the image section

        should work for you…
        0_1540583047363_Screenshot (411).png

        "Life's Too Short To Dance With Ugly People"
        Jim Hallock - 1995

        E Cr4z33C 2 Replies Last reply Reply Quote 0
        • E Offline
          electros Project Sponsor @justjim1220
          last edited by

          @justjim1220
          I tried but it does not work. Now in custom.css it looks like this:

          .MMM-NewsFeedTicker {
              height: 40px;
              background-color: none;
              margin-left: 20%;
          }
          .MMM-NewsFeedTicker .tickerbody {
              position: absolute;
              bottom: 7px;
            
          }
          .MMM-NewsFeedTicker .image {
            position: relative;
            margin-left: 20%;
            bottom: 7px;
            height: 40px;
          }  
          

          And the screen is like that:
          0_1540585163271_5.png

          1 Reply Last reply Reply Quote 0
          • E Offline
            electros Project Sponsor
            last edited by

            The problem is just to move that red line to bottom under the writing line and after that everything it’s fine. Thanks

            justjim1220J 2 Replies Last reply Reply Quote 0
            • justjim1220J Offline
              justjim1220 Module Developer @electros
              last edited by

              @electros

              Apologies!

              Looks like I did tell you wrong about the position…
              Here is the css that makes it work for me, try them and let me know…

              @keyframes marquee {
                  0% {left: 100%;}
                  100% {left: -100%;}
              }
              
              .MMM-NewsFeedTicker {
                  width: 100%;
                  height: 100px;
                  line-height: 100%;
                  overflow: hidden;
                  background: none;
                  margin-left: 20%;
              }
              
              .MMM-NewsFeedTicker .tickerbody {
                  position: relative;
                  bottom: 0;
                  left: 0;
                  vertical-align: middle;
                  white-space: nowrap;
                  text-align: left;
                  animation: marquee 31s linear;
                }
              
              .MMM-NewsFeedTicker .headline {
                  padding-top: 15px;
                  margin: 0 auto;
                  white-space: nowrap;
              }
              
              .MMM-NewsFeedTicker .image {
                position: absolute;
                display: inline-block;
                vertical-align: middle;
                bottom: 10;
                margin-left: 0;
                height: 100px;
                z-index: 10;
                background-color: #FFF;
              }
              

              "Life's Too Short To Dance With Ugly People"
              Jim Hallock - 1995

              1 Reply Last reply Reply Quote 0
              • justjim1220J Offline
                justjim1220 Module Developer @electros
                last edited by

                @electros

                what is the name of the module for the buttons?

                "Life's Too Short To Dance With Ugly People"
                Jim Hallock - 1995

                E 1 Reply Last reply Reply Quote 0
                • E Offline
                  electros Project Sponsor @justjim1220
                  last edited by

                  @justjim1220
                  Sorry but it’s not working. I copied the css you put above in MMM-NewsFeedTicker.css but it still does not work. Now it looks like that
                  0_1540591080827_6.png
                  Buttons are created with the module “MMM-TouchNavigation”

                  justjim1220J 2 Replies Last reply Reply Quote 0
                  • justjim1220J Offline
                    justjim1220 Module Developer @electros
                    last edited by

                    @electros

                    do you still have the entries you put into the custom.css?

                    "Life's Too Short To Dance With Ugly People"
                    Jim Hallock - 1995

                    1 Reply Last reply Reply Quote 0
                    • justjim1220J Offline
                      justjim1220 Module Developer @electros
                      last edited by

                      @electros

                      OK, you need to add the following to your custom.css file:

                      .navigation-menu {
                          display: flex;
                          align-items: stretch;
                          position: absolute;
                      }
                      

                      With the code I posted and this addition to the custom.css file, I was able to get this…
                      0_1540595500237_Screenshot (412).png
                      0_1540595512137_Screenshot (413).png 0_1540595520896_Screenshot (414).png

                      If you added any NewsFeedTicker code to your custom.css file, you need to remove it.

                      If you want the background color back to maroon, change the background: none; to background-color: maroon;

                      "Life's Too Short To Dance With Ugly People"
                      Jim Hallock - 1995

                      E 1 Reply Last reply Reply Quote 0
                      • E Offline
                        electros Project Sponsor @justjim1220
                        last edited by

                        @justjim1220
                        Finally it’s working now. Thank you very much:thumbs_up:

                        1 Reply Last reply Reply Quote 0
                        • E Offline
                          electros Project Sponsor
                          last edited by

                          Thank you very much for the help, but still I do not understand how you moved that red line down. I would be curious, can not get any position you want on the vertical for this module?

                          justjim1220J 1 Reply Last reply Reply Quote 0
                          • justjim1220J Offline
                            justjim1220 Module Developer @electros
                            last edited by

                            @electros

                            you should be able to place it in any of the regions,
                            it works best in the top_bar, middle_center, and bottom_bar for the 100% width

                            "Life's Too Short To Dance With Ugly People"
                            Jim Hallock - 1995

                            1 Reply Last reply Reply Quote 0
                            • Cr4z33C Offline
                              Cr4z33
                              last edited by Cr4z33

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

                                @justjim1220 can you please help me setting a custom logo into

                                defaultLogo : ""
                                

                                ?

                                I’ve tried so far with several image formats and I’ve used both HTTP and HTTPS, but it still doesn’t load the logo… :thinking_face:

                                justjim1220J 1 Reply Last reply Reply Quote 0
                                • justjim1220J Offline
                                  justjim1220 Module Developer @Cr4z33
                                  last edited by

                                  @cr4z33

                                  what news site is it?

                                  "Life's Too Short To Dance With Ugly People"
                                  Jim Hallock - 1995

                                  Cr4z33C 1 Reply Last reply Reply Quote 0
                                  • Cr4z33C Offline
                                    Cr4z33 @justjim1220
                                    last edited by Cr4z33

                                    @justjim1220 said in MMM-NewsFeedTicker:

                                    @cr4z33

                                    what news site is it?

                                    It’s

                                    http://feeds.feedburner.com/SkyitTg24
                                    

                                    and I would like to load

                                    https://tg24.sky.it/static/images/lv/skytg24_logo_header.png
                                    

                                    as default icon (also because I notice that ALL the news feeds I set don’t show the icon in the scrolling bar).

                                    Last but not least is it normal that it uses almost 50% of the CPU load? :frowning_face_with_open_mouth:
                                    I’ve got a Raspberry Pi 3 B+ and a Samsung EVO Plus 32GB micro SD card.

                                    Mykle1M justjim1220J 2 Replies Last reply Reply Quote 0
                                    • Mykle1M Offline
                                      Mykle1 Project Sponsor Module Developer @Cr4z33
                                      last edited by

                                      @cr4z33 said in MMM-NewsFeedTicker:

                                      it normal that it uses almost 50% of the CPU load?

                                      It sure is. The Pi struggles with that type of animation. I’m surprised it’s only 50%. You should monitor your CPU temp, as well.

                                      Create a working config
                                      How to add modules

                                      Cr4z33C 1 Reply Last reply Reply Quote 0
                                      • Cr4z33C Offline
                                        Cr4z33 @Mykle1
                                        last edited by Cr4z33

                                        @mykle1 said in MMM-NewsFeedTicker:

                                        @cr4z33 said in MMM-NewsFeedTicker:

                                        it normal that it uses almost 50% of the CPU load?

                                        It sure is. The Pi struggles with that type of animation. I’m surprised it’s only 50%. You should monitor your CPU temp, as well.

                                        So it’s not a matter of not so fast SD card then right?

                                        I am using a heatsink on it therefore the average temperature so far is between 50° Celsius and 60° Celsius.

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

                                          @cr4z33 said in MMM-NewsFeedTicker:

                                          So it’s not a matter of not so fast SD card then right?

                                          Well, it could be, but that’s unlikely. The CPU load issue has been around for some time and animations, especially marquee animations(scrolling) are the #1 culprit, or I miss my mark. Of course, if you used something more robust than a Pi that has a GPU you’d see a world of difference in the way MM performs.

                                          Create a working config
                                          How to add modules

                                          1 Reply Last reply Reply Quote 0
                                          • justjim1220J Offline
                                            justjim1220 Module Developer @Cr4z33
                                            last edited by

                                            @cr4z33

                                            Apologies, I am working on the issue of using a custom logo if one doesn’t get pulled from the site.
                                            Please stand by… :smiling_face_with_sunglasses:

                                            "Life's Too Short To Dance With Ugly People"
                                            Jim Hallock - 1995

                                            mumblebajM 1 Reply Last reply Reply Quote 1

                                            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
                                            • 3
                                            • 4
                                            • 5
                                            • 4 / 5
                                            • 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