specify width of music folder content frame

Posted:
Sun Jun 26, 2011 11:13 pm
by retang
I would like a new setting for specifying the width (factor) of the music folder frame, because now with a small window width, some of the artist's names are rendered unreadable, while in the bigger frame there is room left.
Example:


Posted:
Mon Jun 27, 2011 7:17 pm
by nunya
go to folder in
c - subsonic - jetty - number - webbapp -web-inf - jsp
in jsp folder there is an index file open it in notepad and change the % settings
mine are below play around with them till you find one you like and save file
refresh the page to see the changes
hope this helps
<html><head>
<%@ include file="head.jsp" %>
<link rel="alternate" type="application/rss+xml" title="Subsonic Podacst" href="podcast.view?suffix=.rss">
</head>
<frameset rows="70,*,0" border="0" framespacing="0" frameborder="0">
<frame name="upper" src="top.view?">
<frameset cols="25%,75%" border="0" framespacing="0" frameborder="0">
<frame name="left" src="left.view?" marginwidth="0" marginheight="0">
<frameset rows="70%,30%" border="0" framespacing="0" frameborder="0">
<frameset cols="*,${model.showRight ? 230 : 0}" border="0" framespacing="0" frameborder="0">
<frame name="main" src="home.view?listSize=10&listType=newest" marginwidth="0" marginheight="0">
<frame name="right" src="right.view?">
</frameset>
<frame name="playlist" src="playlist.view?">
</frameset>
</frameset>
<frame name="hidden" frameborder="0" noresize="noresize">
</frameset>
</html>