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
Other answers
You need to add these properties to body in your CSS: overflow: auto; overflow-x: hidden;
Santhosh Sundar
Related Q & A:
- I have a blog how can I make money with it.Best solution by Yahoo! Answers
- How do I make some some money before I land a real job that's related to my Degree?Best solution by wikihow.com
- How do i make a signature for when i send an email?Best solution by Yahoo! Answers
- How do i make a scroll-box for pictures?Best solution by Yahoo! Answers
- How can I make clay use to make things?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
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.