QUOTE(Sauceman @ May 30 2008, 05:49)

First off I want to say to the creator: this is the best foobar config I've ever seen by far; it's almost flawless in my opinion.
Thanks, glad you like it!
QUOTE(Sauceman @ May 30 2008, 05:49)

My first question is, in the info panel what do I have to do to get the panel to show more information (bitrate, file type, etc as shown in example)? In the welcome screen I checked off all of the available "info" boxes.
You are using the beta I assume? If that's the case you'll have to open up the settings window (rightclick titlebar -> settings), find
$setpvar(col1TopH,140) and change inceare the value so that all the information text fits.
QUOTE(Sauceman @ May 30 2008, 05:49)

The second question is, album art...how do I get it to show in the side panel? I missed this option.
As with above, I'll assume you're using the beta: Same window, find and uncomment the lines (remove the //)
//$setpvar(col1Upr,Album Art)
//$setpvar(col1UprPanel,Album Art)
//$setpvar(col1UprH,160)QUOTE(Sauceman @ May 30 2008, 05:49)

And for a really naive question, would it be possible to set the track info panel to upon clicking it it switches to the album art?
It is most likely possible, but will require some minor editing of the code. Start with adding a button which sets a custom pvar to 1 or 0 depending on its previous value and then check against it's value to determine which panel to display, something along with this:
$setpvar(col1Top,$ifequal($getpvar(topPanelToggle),1,Track Info,Album Art))
$setpvar(col1Top,$ifequal($getpvar(topPanelToggle),1,Track Display,Album Art))
$setpvar(col1TopH,160)