Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

At a quick glance there seems to be a few questions on SO about lack of vertical scroll. My problem is the opposite, I have vertical scroll but no horizontal. Here's the page in question:

http://bgmobile.sytes.net/dogs/threegenpedigree/1

I must've missed something fundamental... but my JS/CSS-Fu is not strong.

EDIT: I just noticed in scrollview.js it adds the data-scroll attr with value 'y'. I have changed that to 'true' but it still doesn't fix it. I have also removed the opts parameter from the scrollview() call after checking out the defaults, and still it only scrolls on the vertically.

share|improve this question
why do you use scrollview.js in the first place? did you include it just to get the horizontal scrolling? – Nelson Oct 2 '12 at 8:29
I can scroll horizontally with Chrome and Firefox. It moves the screen horizontally at least, but it doesn't remain in that position but moves back to the original position. – Calavoow Oct 2 '12 at 15:28
I need both vertical and horizontal scrolling. – DanyW Oct 2 '12 at 17:47
I can also scroll vertically, or even diagonally. I just left it out because you already had it working. – Calavoow Oct 2 '12 at 21:18
Yup... I realised that. The trouble is I can't figure out why it's cropping the content horizontally. – DanyW Oct 3 '12 at 0:18
show 1 more comment

1 Answer

up vote 0 down vote accepted
+50

this is style issue add css like below

     .containerstyle{

      }
      .containerstyle > .ui-scrollview-view {
       width: 1300px;/*specify the width you want ,
       put a larger value than your screen resolution*/           
      }

and change the code for the div as below

      <div data-scroll="true" class="containerstyle"></div>

Hope this helped.

share|improve this answer
Well... that seems incredibly obvious now that I see it! Thanks, I didn't quite do it that way but yes, the general idea is I had to specify a width. Would be nice to be able to display the content at full width, whatever that may be. – DanyW Oct 6 '12 at 4:23
@DanyW you can specify the style of the content in containerstyle, you can specify the content width as 100% and for the .ui-scrollview-view as 120%, i think it could work. – Aravind Oct 6 '12 at 7:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.