Please take a look at this.
I’ve tried adjusting the overflow properties and changing the widths of the images but the scroll bar remains at the bottom of the screen.
Does anyone know what is causing this and how to stop this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The problem is in your
.slideshowdefinition (style.css:199…).The browser tries to solve the formula:
and fails because
leftis 50% andwidthis 100%. Your use ofmargin:-800pxwon’t help on a device with display width of 1920px, as (1920*1.5 – 800) is 2080 and thus too wide for a device of that size.Use the following definition instead, as it will implicit create a element with an
widthof 100%.See also CSS Positioned Layout Module Level 3: Section 7.1. Keep in mind, that even when you use the technique described above users with a display width of less than 1024px will have a scrollbar. For this issue try
body{overflow-x:hidden;}.Your old code (don’t use it! only for completion):