Because the current Prosilver style breaks up the view topic area into 4 parts by page width
50% for the Topic
8% for post count
8% for views
25% for last post
People would run anything higher then the default width of 800px start seeing a lot of wasted space devoted to posts, topics, views, posted by. These fields do not need to be dynamic, and the space saved should be devoted to the Topic field which tends to wrap (and it does not need to) Below is the code that fixes the issue in the forum view a save a text wrapping issue that I am trying to resolve. I will also look into fixing the view topic. we don't need 15% of the side of the page devoted to user data when a static width will work better. For most users this is a non issue, but soon as you use a resolution hight then 1024x768 you will start to know a lot of wasted space that does not need to happen.
more details can be found on the Original Thread on the development site. http://area51.phpbb.com/phpBB/viewtopic ... 26&t=28270
MKruer wrote:A blast form the past.
I came up with what I consider a better version for fixing/improving the dynamic topic name with static width posts, topics, views, posted by width issue feilds.Code: Select all
dd.posts, dd.topics, dd.views { /* width: 8%; */ Removed width: 70px; */ Added text-align: center; line-height: 2.2em; font-size: 1.2em; }
Code: Select all
dd.lastpost { /* width: 25%; */ Removed width: 230px; */ Added font-size: 1.1em; }
Code: Select all
ul.topiclist dt { display: block; float: left; width: 50%; font-size: 1.1em; padding-left: 5px; padding-right: 5px; margin-right: -425px; */ Added }
This works perfectly... except for one issues that I have yet be unable to solve. The problem is the contents of the Topic itself do not wrap until the end of the page. It gets to the first field and then goes under the existing fields, (posts, topics, views, posted by) so it ends up looking like a jumbled mess. Can someone who is smarter then myself in the ways of CSS figure out how to make the text wrap before it gets to the the static width fields. I am trying to not add any tags and just use the existing css items.Code: Select all
li.header dt { font-weight: bold; margin-right: -425px; */ Added }
I highly recommend this fix for anyone who likes using a full screen providing we can fix the wrapping bug.