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

RH Version 2022.3.93 - no horizontal scrolling in Review mode for Chrome and Edge

Community Beginner ,
Sep 28, 2023 Sep 28, 2023

Copy link to clipboard

Copied

RH Version 2022.3.93
Dear Community, would appreciate your help to deal with a wide table viewing in the Review mode.

 

In Chrome and Edge, there is no horizontal scrolling so that one can view a wide table (see the screen)
In Firefox, there is a horizontal scrolling but there is no ability to add highlights and other review functions. (see the screen) That's why I currently prefer to use Chrome.

Is there a way to cure that?

 

Perhaps there is a trick in RH to make a table fit the window - would be grateful for pointing me to the exact setting

 

Thank you for your help

Views

645

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 ,
Sep 28, 2023 Sep 28, 2023

Copy link to clipboard

Copied

Nothing I have seen.

 

I recently set up a test review using two Adobe IDs and everything funtioned using Edge which is based on Chrome.

 

I didn't test tables so that might be a bug.

 

I suggest for this one you need to go to Adobe Support. See https://helpx.adobe.com/contact/enterprise-support.other.html#robohelp for your Adobe Support options. The email link tcssup@adobe.com is recommended as it reaches a team dedicated to Technical Communication Suite products including RoboHelp.

________________________________________________________

My site www.grainge.org includes many free Authoring and RoboHelp resources that may be of help.

 

 

 

 

Help others by clicking Correct Answer if the question is answered. Found the answer elsewhere? Share it here. "Upvote" is for useful posts.

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 Beginner ,
Oct 16, 2023 Oct 16, 2023

Copy link to clipboard

Copied

LATEST

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
Adobe Employee ,
Sep 28, 2023 Sep 28, 2023

Copy link to clipboard

Copied

You could try the following:

Wrap the table in a div container like this:

<div class="wide-table">
   <table>
   </table>
</div>

 

Then create a css for the div:

div#wide-table {
    padding: 0px;
    max-width: 100%;
    /* or:
    max-width: calc(100% - 20px);
    while 20px can be any value to reduce the max-width 
    and make the div fit to the desired maximum width;  
    */
    overflow-x: auto;
}

 

This should (in theory) make the content of the div (here: the table) horizontally scrollable (autoscroll-x:auto).

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 ,
Oct 01, 2023 Oct 01, 2023

Copy link to clipboard

Copied

@Stefan Gentz I think the css is slightly wrong. # denotes an id, but the div has a class. So I think the css should be like so (replacing the # with a . )

 

 

div.wide-table {
    padding: 0px;
    max-width: 100%;
    /* or:
    max-width: calc(100% - 20px);
    while 20px can be any value to reduce the max-width 
    and make the div fit to the desired maximum width;  
    */
    overflow-x: auto;
}

 

Or would you recommend changing the div to have an id instead? I'm not familiar with the pros and cons in this case.

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
Adobe Employee ,
Oct 02, 2023 Oct 02, 2023

Copy link to clipboard

Copied

You are upsolutely right, @Amebr. Thanks for spotting. Of course it should have been div.wide-table {}, not div#wide-table {}.

I suggest to use class, not id: You can assign a class to many elements (that is, you can have multiple <div class="wide-table">(...)</div> in your document), but you can only have an id once (that is, <div id="wide-table">(...)</div> would be only allowed once in a document).

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 ,
Oct 02, 2023 Oct 02, 2023

Copy link to clipboard

Copied

Oh yes, I forgot id is unique per page. I'm still travel-lagged from my holiday. 🙂

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
Resources
RoboHelp Documentation
Download Adobe RoboHelp