Roundcube Community Forum

 

FF 3 and CSS issue in settings tab

Started by nervino, March 03, 2009, 11:48:54 AM

Previous topic - Next topic

nervino

Hi All, I've just upgraded to Roundcube 0.2 and I have noticed that using Firefox 3.0.6, in the personal settings area -> User preferences, the three divs on the right cross the three divs on the left. Internet Explorer correctly shows these divs.

I change the .userprefs-block class in /skins/default/settings.css:

from:
.userprefs-block
{
  float: left;
  margin-right: 14px;
  width: 520px;
}


to:
.userprefs-block
{
  float: left;
  margin-right: 14px;
 width: auto !important;
  width: 520px;
}


This hack seems to fix the problem.
Hope this helps..