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...
bump? any suggestions?
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;
}
Thanks, that worked just like I wished it to...
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;
}