CSS for Table

Posted in: Newspaper
Post count: 21

Hey Guys,

I have a problem with this table. Its getting cut off

Wondering if we could make it smaller and fit.

http://vapekrew.com/d3232/

Please go to the page and check it out

Thanks

Post count: 20688

Hi,

From what I can see you are using a plugin to create the table, this may cause problems displaying the table because the plugin could be conflicting with the theme in some regard. A default HTML table – http://www.w3schools.com/html/html_tables.asp would work just fine with the theme responsiveness. In this case the plugin uses a class that sets a min-width property on the table cells – https://www.screencast.com/t/TZfO80GDtN resulting in a bigger table width then the space available and a overflow property – https://www.screencast.com/t/xGLwpURcswM You can try to identify where this min-width is set in the plugin’s style and lower that value, or try adjusting it with custom css using something like this in Theme panel->Custom Css

.td-post-content .wpsm-comptable td {
min-width: 98px;
}

Result with code added – https://www.screencast.com/t/YjTwihrRH
Thanks

Post count: 21

Thank you!

Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic.