Details
-
Sub-task
-
Status: Closed
-
Major
-
Resolution: Fixed
-
Release Branch 09.04, Trunk
-
None
-
Note: when using a table inside a div as is done w/matrix category layout, the table expands past the div in all but the largest browser windows (with the smallest font settings) and overwrites the right column. Very messy. At a minimum, the middle column should just be cropped - this will force the user to expand the browser if they want to see all that is in the middle column. [Better fix is to make the whole thing fluid - but that would require a major CSS & possibly widget redo.]
Note: when using a table inside a div as is done w/matrix category layout, the table expands past the div in all but the largest browser windows (with the smallest font settings) and overwrites the right column. Very messy. At a minimum, the middle column should just be cropped - this will force the user to expand the browser if they want to see all that is in the middle column. [Better fix is to make the whole thing fluid - but that would require a major CSS & possibly widget redo.]
Description
To fix this, add the following line to the ecommain.css:
OLD version:
#ecom-mainarea .center {
margin-left:201px;
margin-right:261px;
voice-family:inherit;
}
NEW version
#ecom-mainarea .center {
margin-left:201px;
margin-right:261px;
overflow:hidden;
voice-family:inherit;
}
This will force any overflow to be cropped.
Attachments
Attachments
Issue Links
- duplicates
-
OFBIZ-1890 Matrix layout for Featured Products
- Closed