MagicMirror Forum

    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unsolved
    • Solved
    • MagicMirror² Repository
    • Documentation
    • Donate
    • Discord

    Album art from LastFm Module covering weekly forecast?

    Troubleshooting
    3
    8
    3710
    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.
    • A
      Anthony_Haddad last edited by

      Hey guys, I hope you all had a Happy New Year! I installed the Last FM Module over the recent holiday, but once I started up the MM I realized that the Album Art is covering the forecast as shown below. Unfortunately I only know Python fluently and my CSS isn’t the best hahaha 🙂 I would like to keep this module in the corner is it possible?
      0_1483491030624_FORUM.png
      Thanks in advance
      -Tony

      strawberry 3.141 1 Reply Last reply Reply Quote 0
      • strawberry 3.141
        strawberry 3.141 Project Sponsor Module Developer @Anthony_Haddad last edited by

        @Anthony_Haddad i guess the newsfeed is in bottom_bar? bottom_bar is underneath of bottom_right https://forum.magicmirror.builders/topic/286/regions set the region of the newsfeed to bottom_center

        Please create a github issue if you need help, so I can keep track

        A 1 Reply Last reply Reply Quote 0
        • A
          Anthony_Haddad @strawberry 3.141 last edited by

          @strawberry-3.141 Yes, you were right! It worked! Thank You! BUT unfortunately the album art is still covering the last two lines of the weekly forecast. Here is the CSS for the module: https://github.com/PtrBld/MMM-Scrobbler/blob/master/MMM-Scrobbler.css Is it possible to reduce the size of the album art? I’ve tried playing with the numbers but only managed to move the module more to the right…

          broberg strawberry 3.141 2 Replies Last reply Reply Quote 0
          • broberg
            broberg Project Sponsor @Anthony_Haddad last edited by

            @Anthony_Haddad

            There is no class assigned in the js file, so you might have to change some code.

            find

            <img src='"+ this.songData.image +"' width='200'>
            

            in the MMM-Scrobbler.js change it to

            <img src='"+ this.songData.image +"' width='150' height='150'>
            
            A 1 Reply Last reply Reply Quote 0
            • strawberry 3.141
              strawberry 3.141 Project Sponsor Module Developer @Anthony_Haddad last edited by

              @Anthony_Haddad did you try

              .MMM-Scrobbler .album-art img {
                height: 150px;
                width: 150px;
              }
              

              Please create a github issue if you need help, so I can keep track

              1 Reply Last reply Reply Quote 0
              • A
                Anthony_Haddad @broberg last edited by

                @broberg Thanks mate! It does reduce the size of the album art, you wouldn’t happen to know how remove the title of the album? So the module could drop down a little further as everything is still cramped up. Thank you for your help so far.

                strawberry 3.141 1 Reply Last reply Reply Quote 0
                • strawberry 3.141
                  strawberry 3.141 Project Sponsor Module Developer @Anthony_Haddad last edited by

                  @Anthony_Haddad

                  .MMM-Scrobbler .album-name {
                    display: none;
                  }
                  

                  Please create a github issue if you need help, so I can keep track

                  A 1 Reply Last reply Reply Quote 0
                  • A
                    Anthony_Haddad @strawberry 3.141 last edited by

                    @strawberry-3.141 @broberg Thank you so much guys! It looks perfect!

                    1 Reply Last reply Reply Quote 0
                    • 1 / 1
                    • First post
                      Last post
                    Enjoying MagicMirror? Please consider a donation!
                    MagicMirror created by Michael Teeuw.
                    Forum managed by Paul-Vincent Roll and Rodrigo Ramírez Norambuena.
                    This forum is using NodeBB as its core | Contributors
                    Contact | Privacy Policy