Keep in mind that with the Genius of Sindre you can do a lot with Subsonic, so you can remove the chat, and keep the Right View frame with the Now Playing and link to lyrics, or you remove the frame and now playing/lyrics altogether!
Personally, I like 3.7's way of putting the nowPlaying on the main view.
First, you'll need to open C:\subsonic\jetty\####\webapp\web-inf\jsp\index.jsp.
Inside of this file you'll see a frameset declaration, and then another frameset declaration.
The first is the main view and the second frame is the playlist. However, the second frameset adds the right.jsp file in another frame. (Squeezing your album art and obstructing your beautiful library.)
(You should make a backup)
Then simply remove the second frameset declaration, the right frame, and the </frameset> that corresponds to the previously removed inner frameset.
Now you should be left with just 1 frameset declaration and a 70-30% split between the Main view and Playlist.
You can stop here, or you can do what I did.
Go back to the jsp folder and open Right.jsp
You'll see at the top of the file the declaration of a few .js files used.
we're looking in particular for the dwr/*.js files, (util, NowPlayingService, etc.). Copy these declarations and paste them under the first dwr/*.js declarations in the main.jsp file.
You're almost there, keep along.
Now you'll be looking for a <c:if test and the test will be model.nowPlaying
once you find it, it's a rather large block of code that lays out the whole "Now Playing" block.
If you'd like to put this on the Main view page, simply open up the main.jsp and find the <div> towards the very bottom that shows the next album. Right about this, you can Insert just the copied code from the right.jsp.
Save and enjoy.
