Can I scroll ScrollView programmatically to a specific position?

How do I make horizontal scroll bars disapear?

  • I've recently integrated a supersized jQuery slider into my site, but for some reason I'm seeing horizontal scroll bars. Does anyone know how to make these disappear? Here are the details for my site: http://zoraabbeta.myshopify.com password: fongeu Hey Guys: I've def tried putting the overflow attribute as hidden and I still have this issue. I believe the issue is coming from the fact that I'm using a full screen supersized jQuery slider. The attributes of the slide show was set to "position:fixed"--when it was set like this, there were no horizontal scroll bar. However the remaining div elements on the page would scroll on top of the image, as the image woudl remain fixed. This is not what i want, so I changed the position to "absolute" (this was actually suggested by the creator of the supersized slider himself). While that worked, it left me with the annoying horizontal scroll bar. Does anyone know of any other ideas? perhaps I need to use JS to solve this problem?

  • Answer:

    The overflow CSS property let you choose the behavior of the content when it's larger than its parent block. overflow-y and overflow-x are used for respectively Y and X axes only. The possible values are: visible: (default) the content may be rendered outside of the block if it's too long hidden: the content is clipped, and there is no scrollbars scroll: there is always scrollbars auto: no scrollbars if the content fits the block, scrollbars if it overflows So here, you have some content overflow but want to remove horizontal scrollbars, so use overflow-x:hidden.

Baptiste Fontaine at Quora Visit the source

Was this solution helpful to you?

Other answers

You need to add these properties to body in your CSS: overflow: auto; overflow-x: hidden;

Santhosh Sundar

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.