I'm using webforms. One feature of webforms is to display the results in a table. But, it's not possible to display the whole data because the theme cuts off the presentation on the right side.

There are also other modules which present data in tables. There is the same behaviour. What can I do to display the whole table contents?

Thanks
iceman2202

CommentFileSizeAuthor
webform.PNG63.52 KBiceman2202
Support from Acquia helps fund testing for Drupal Acquia logo

Comments

Deepika.chavan’s picture

Hi,
Rename local_sample.css to local.css in your theme's i.e. '/black_mamba' directory. Please try adding following css to id or class of outer

of your table in local.css file, you can change the width accordingly.
 overflow:auto;
width:450px;

For example, in my case structure of my table is as follows:

 <div class="allocate-seeker-table">
      <table class="sticky-header">
        <th></th>
        <tr> <td> </td> </tr>
      .
      .
      .
      </table>
 </div>     

So I have added css for class 'allocate-seeker-table' as follows :

.allocate-seeker-table {
  overflow: auto;
  width: 450px;
}

Rgrds,

Deepika Chavan.