• Resolved bloggingbeats

    (@amitgargjind)


    Hey
    I need to increase cell width in MoneyBack row as days is coming in next line.
    Any help will be very appreciated.

    • This topic was modified 5 years, 4 months ago by bloggingbeats.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • You can increase column width by adding css:

    .tablepress-id-N .column-N {
    	width: Npx;
    }

    where N is a number of your table id, number of column and your width parameter.

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    thanks for your question, and sorry for the trouble.

    Increasing the width of that cell will not work, as the table already is too wide for the screen. You could however simply disallow automatic line breaks (which is your actual goal here). For that, please add this to the “Custom CSS” textarea on the “Plugin Options” screen of TablePress:

    .tablepress-id-3 .row-9 td {
      white-space: nowrap;
    }

    Regards,
    Tobias

    Thread Starter bloggingbeats

    (@amitgargjind)

    Hi Tobias

    The way you analyze the problem is awesome.

    All sorted as of now
    Thanks

    Plugin Author Tobias B?thge

    (@tobiasbg)

    Hi,

    no problem, you are very welcome! ?? Good to hear that this helped!

    Best wishes,
    Tobias

    P.S.: In case you haven’t, please rate TablePress here in the plugin directory. Thanks!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to change Cell width’ is closed to new replies.