<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>post Re: Desktop: Adjust Now Playing Screen in Desktop</title>
    <link>https://community.pandora.com/t5/Desktop/Desktop-Adjust-Now-Playing-Screen/m-p/11213#M660</link>
    <description>&lt;P&gt;Hey there,&amp;nbsp;&lt;a href="https://community.pandora.com/t5/user/viewprofilepage/user-id/97387"&gt;@eddiewho&lt;/a&gt;.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Unfortunately, there isn't a way to adjust the Now Playing screen from the web or the desktop app.&lt;/P&gt;
&lt;P&gt;However, if you'd like to have the ability to change it, I would recommend creating &lt;A href="https://community.pandora.com/t5/Ideas/idb-p/Backstage" target="_self"&gt;a new idea here&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;You can upvote ideas by clicking on the &lt;span class="lia-unicode-emoji" title=":blue_heart:"&gt;💙&lt;/span&gt; icon next to the title of an idea.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks so much for posting on the community!&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":musical_keyboard:"&gt;🎹&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 20 Sep 2023 20:53:27 GMT</pubDate>
    <dc:creator>AlyssaPandora</dc:creator>
    <dc:date>2023-09-20T20:53:27Z</dc:date>
    <item>
      <title>Desktop: Adjust Now Playing Screen</title>
      <link>https://community.pandora.com/t5/Desktop/Desktop-Adjust-Now-Playing-Screen/m-p/11162#M651</link>
      <description>&lt;P&gt;Is there a way to change the way the Now Playing Screen looks? There is so much wasted space. The song title scrolls across a tiny area and there is rarely enough room to show the artist name and album title. Why? It's really annoying for no reason. Plaster the page with advertisements, I don't care. But please - I just want to see the full song title, artist name, and album name.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;&lt;EM&gt;mod edit: changed title for clarity&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2023 20:52:22 GMT</pubDate>
      <guid>https://community.pandora.com/t5/Desktop/Desktop-Adjust-Now-Playing-Screen/m-p/11162#M651</guid>
      <dc:creator>eddiewho</dc:creator>
      <dc:date>2023-09-20T20:52:22Z</dc:date>
    </item>
    <item>
      <title>Re: Desktop: Adjust Now Playing Screen</title>
      <link>https://community.pandora.com/t5/Desktop/Desktop-Adjust-Now-Playing-Screen/m-p/11213#M660</link>
      <description>&lt;P&gt;Hey there,&amp;nbsp;&lt;a href="https://community.pandora.com/t5/user/viewprofilepage/user-id/97387"&gt;@eddiewho&lt;/a&gt;.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":waving_hand:"&gt;👋&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Unfortunately, there isn't a way to adjust the Now Playing screen from the web or the desktop app.&lt;/P&gt;
&lt;P&gt;However, if you'd like to have the ability to change it, I would recommend creating &lt;A href="https://community.pandora.com/t5/Ideas/idb-p/Backstage" target="_self"&gt;a new idea here&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;You can upvote ideas by clicking on the &lt;span class="lia-unicode-emoji" title=":blue_heart:"&gt;💙&lt;/span&gt; icon next to the title of an idea.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks so much for posting on the community!&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":musical_keyboard:"&gt;🎹&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Sep 2023 20:53:27 GMT</pubDate>
      <guid>https://community.pandora.com/t5/Desktop/Desktop-Adjust-Now-Playing-Screen/m-p/11213#M660</guid>
      <dc:creator>AlyssaPandora</dc:creator>
      <dc:date>2023-09-20T20:53:27Z</dc:date>
    </item>
    <item>
      <title>Re: Change Desktop Dashboard/Now Playing Screen</title>
      <link>https://community.pandora.com/t5/Desktop/Desktop-Adjust-Now-Playing-Screen/m-p/135843#M9580</link>
      <description>&lt;P&gt;I fixed this with a userscript in the Tampermonkey chrome extension.&lt;/P&gt;&lt;P&gt;1.&amp;nbsp; Get Tampermonkey&lt;BR /&gt;2.&amp;nbsp; Click the extension and "Create a new script"&lt;BR /&gt;3.&amp;nbsp; Paste the following into the new script file:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;// ==UserScript==
// &lt;a href="https://community.pandora.com/t5/user/viewprofilepage/user-id/996473"&gt;@Name&lt;/a&gt;         Pandora now Playing
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://www.pandora.com/station/play/210184843936399976
// &lt;a href="https://community.pandora.com/t5/user/viewprofilepage/user-id/1484028"&gt;@Icon&lt;/a&gt;         https://www.google.com/s2/favicons?sz=64&amp;amp;domain=pandora.com
// &lt;a href="https://community.pandora.com/t5/user/viewprofilepage/user-id/450674"&gt;@Grant&lt;/a&gt;        none
// ==/UserScript==

(function() {
    'use strict';
    function addGlobalStyle(css) {
        var head, style;
        head = document.getElementsByTagName('head')[0];
        if (!head) { return; }
        style = document.createElement('style');
        style.type = 'text/css';
        style.innerHTML = css;
        head.appendChild(style);
    }
    addGlobalStyle( '.NowPlaying__centerWrapper, .nowPlayingTopInfo, .nowPlayingTopInfo__coverGroup, .nowPlayingTopInfo__current__inner, .nowPlayingTopInfo__current { max-width: 100% !important; width: 100% !important; }' );
    addGlobalStyle( '.nowPlayingTopInfo__current__trackName, .nowPlayingTopInfo__current__row2 { line-height: 130% !important; font-size: 1 !important; font-size: 250% !important; overflow: visible !important; max-width: 100% !important; width: 100% !important; }' );
    addGlobalStyle( '.nowPlayingTopInfo__current__albumName, .NowPlayingTopInfo__current__artistName { line-height: 130% !important; font-size: 1 !important; font-size: 100% !important; overflow: visible !important; max-width: 80% !important; width: 80% !important; }' );
    addGlobalStyle( '.nowPlayingTopInfo__coverGroup { margin-bottom:20% !important; }' );
})();&lt;/LI-CODE&gt;&lt;P&gt;4.&amp;nbsp; On line 7 of this code snippet change the URL to your station URL, and add a&amp;nbsp;@match entry for any other stations you want to add (this is the annoying part).&lt;BR /&gt;5.&amp;nbsp; Save the userscript file and open/refresh Pandora.&lt;/P&gt;&lt;P&gt;All this does is make the song title, band, and album text larger and less cramped.&amp;nbsp; I'm not a coder, there's probably a more streamlined way, but this worked for me to not have to walk across the room to see what's playing despite having an enormous screen.&amp;nbsp; It really is a waste of space and the text info we want to see is literally smaller than the menu options.&amp;nbsp; Come on Pandora, give us a Now Playing screen that actually tells us WHAT'S PLAYING.&amp;nbsp; Sheesh.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Sep 2023 17:38:05 GMT</pubDate>
      <guid>https://community.pandora.com/t5/Desktop/Desktop-Adjust-Now-Playing-Screen/m-p/135843#M9580</guid>
      <dc:creator>kylejester</dc:creator>
      <dc:date>2023-09-19T17:38:05Z</dc:date>
    </item>
  </channel>
</rss>

