Page 1 of 1

scrollbar not displaying in Webhelp Classic Mobile

Posted: Tue Jan 03, 2017 11:47 pm
by shudson310
On longer topics, there is no way to scroll to see the rest of the topic in Webhelp Classic Mobile transform. How can I force the scrollbars to display?

Re: scrollbar not displaying in Webhelp Classic Mobile

Posted: Wed Jan 04, 2017 1:28 am
by shudson310
Fixed it in webhelp_topic.css. I added overflow:auto to the following style:

Code: Select all

#content{
border-left:2px solid gray;
padding-left:1em;
overflow:auto;
}

Re: scrollbar not displaying in Webhelp Classic Mobile

Posted: Wed Jan 04, 2017 1:30 am
by shudson310
shudson310 wrote:Fixed it in oxygen-webhelp/resources/css/webhelp_topic.css. I added overflow:auto to the following style:

Code: Select all

#content{
border-left:2px solid gray;
padding-left:1em;
overflow:auto;
}