Roundcube Community Forum

News and Announcements => General Discussion => Topic started by: ccc1997 on April 16, 2009, 04:52:52 PM

Title: Column Width Configuration
Post by: ccc1997 on April 16, 2009, 04:52:52 PM
Is there a way to shorten/expand the column width for Date, Sender, Subject?  

I would like the Date to expand by 5 spaces as I have opted to display the full day/date/year and would like to shorten the subject by 5 spaces...
Title: Column Width Configuration
Post by: ccc1997 on April 18, 2009, 10:21:33 AM
bump?  any suggestions?
Title: Column Width Configuration
Post by: jpgrace on April 18, 2009, 10:35:08 AM
Have you tried changing the css?  roundcubemail/skins/default/mail.css, line:581 (version 0.2.1).  Change the width to like 130px.

#messagelist tr td.date {
  vertical-align:middle;
  width:118px;
}
Title: Column Width Configuration
Post by: ccc1997 on April 23, 2009, 09:14:16 AM
Thanks, that worked just like I wished it to...
Title: Column Width Configuration
Post by: ccc1997 on April 23, 2009, 09:30:09 AM
My account worked great, but others still had a wrapping issue with the date spanning two lines.  So, I played with the configuration and changed the width to 145px and this works for all accounts...

#messagelist tr td.date
{
  width: 145px; /*default width of 118px changed to accomodate full date*/
  vertical-align: middle;
}