Roundcube Community Forum

 

Column Width Configuration

Started by ccc1997, April 16, 2009, 04:52:52 PM

Previous topic - Next topic

ccc1997

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...

ccc1997


jpgrace

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;
}

ccc1997

Thanks, that worked just like I wished it to...

ccc1997

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;
}