Skip to main content
Answer

Scrolling Side to Side when Previewing Reports

  • February 22, 2022
  • 2 replies
  • 16 views

steveninfinger
Helper III
Forum|alt.badge.img+8

I’m sure this is something simple I’m just missing, but how do others scroll side to side when looking at previews of reports? I’ve used the left and right arrow keys, but it’s not very accurate and delayed. Is there a scroll bar or button that I’m just totally missing?

Best answer by elamast

I have a horizontal scroll bar:

 

 

I’m wondering if you have custom CSS that is hiding the “x-overflow”--something like this?

html, body {
max-width: 100%;
overflow-x: hidden;
}

 

 

2 replies

elamast
Hero I
Forum|alt.badge.img+7
  • Hero I
  • Answer
  • February 22, 2022

I have a horizontal scroll bar:

 

 

I’m wondering if you have custom CSS that is hiding the “x-overflow”--something like this?

html, body {
max-width: 100%;
overflow-x: hidden;
}

 

 


steveninfinger
Helper III
Forum|alt.badge.img+8
  • Author
  • Helper III
  • February 22, 2022

:thinking: that’s probably it. Thanks, Ed!