Author Topic: Column Width Configuration  (Read 6152 times)

Offline ccc1997

  • Newbie
  • *
  • Posts: 9
Column Width Configuration
« 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...

Offline ccc1997

  • Newbie
  • *
  • Posts: 9
Column Width Configuration
« Reply #1 on: April 18, 2009, 10:21:33 AM »
bump?  any suggestions?

Offline jpgrace

  • Jr. Member
  • **
  • Posts: 10
Column Width Configuration
« Reply #2 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;
}

Offline ccc1997

  • Newbie
  • *
  • Posts: 9
Column Width Configuration
« Reply #3 on: April 23, 2009, 09:14:16 AM »
Thanks, that worked just like I wished it to...

Offline ccc1997

  • Newbie
  • *
  • Posts: 9
Column Width Configuration
« Reply #4 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;
}