• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Making responsive tables in ePUB with InDesign

New Here ,
Nov 29, 2018 Nov 29, 2018

Copy link to clipboard

Copied

Hello there, is there anyway to make responsive tables with InDesign when you export to ePUB ?

TOPICS
EPUB

Views

887

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 29, 2018 Nov 29, 2018

Copy link to clipboard

Copied

Moving to InDesign EPUB forum

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 29, 2018 Nov 29, 2018

Copy link to clipboard

Copied

Tables are just not responsive. The best thing I can offer is the suggestion to set it to be scrollable on smaller screens.

Add a class to the table and then add some CSS

Something like this:

@media only screen and (max-width: XXXpx) {

.table-class-name {

overflow: hidden;

overflow-x: scroll;

display:block;

}

}

You’ll need to experiment with it.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Nov 29, 2018 Nov 29, 2018

Copy link to clipboard

Copied

Thanks Bob, I've been using that code, but it isn't working. When I'm editing the ePUB, there's a specific table style to the tabels. When I export, the class "table_style" goes to the td and tr tags, not only to the table tag. Could it be the error ?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 29, 2018 Nov 29, 2018

Copy link to clipboard

Copied

Without examining the markup in the HTML and the CSS it's impossible for me to say. Some of it will depend on the reader app, too.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Nov 30, 2018 Nov 30, 2018

Copy link to clipboard

Copied

Is it possible that in some readers it works and others it doesn't ? Which reader do you recomend ?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 30, 2018 Nov 30, 2018

Copy link to clipboard

Copied

The books app on iPad and iOS to start with.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Nov 30, 2018 Nov 30, 2018

Copy link to clipboard

Copied

LATEST

Any really good readers to Windows ?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines