I have spreadsheet with view mode as HTML table. The width of the spreadsheet extends beyond the page width. I think it would be better to have a scroll bar and full screen applied to this view also. Please see the attached image.

CommentFileSizeAuthor
Spreadsheet HTML table.jpg160.25 KBcmwelding
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

infojunkie’s picture

You can try to target the container div with some CSS that specifies overflow: scroll. Does that work?

cmwelding’s picture

I used css injector module to apply following CSS code which made it work. The only problem is that the scroll bar covers the full screen button on the bottom right corner.

table{
    max-width: 100%;
    overflow: scroll;
    display: block;
}
willhallonline’s picture

Status: Active » Closed (fixed)

Fixed by making the socialcalc repo responsive.