March 26, 200521 yr Been fooling with this for an hour, done searches, looked at the developer web site, nothing. The only post that comes close to what I'm trying to figure out is so badly writen, I don't know what the author is trying to do, and the solution is too confusing. Here's what I'm trying to do: WPI by default is displaying 2 apps per screen. That's not good enough. I need the screen filled up by catagories. Essentially, I have about 12 apps. all 12 apps should be on one screen. Instead, I have to page through 6 screens to see all apps. The viao theme does what I want by default, why can't the default theme do the same?
March 27, 200521 yr You should compare the wpi.htm file from the default theme, with the one from the Vaio theme.If you add the following the the default wpi.htm file, you should be able te accomplish what you want:<script> if (top.status != "") winheight = top.status; cols = Math.round((winheight/3*4)/320,0); if (!maxentries) { switch (winheight) { case '480': maxentries=14; break; case '600': maxentries=19; break; case '768': maxentries=26; break; case '1024': maxentries=39; break; case '1200': maxentries=44; break; default: maxentries=31; } }</script>
Create an account or sign in to comment