horizontal scrolling
- D_L_I
- Topic Author
- Offline
- New Member
Less
More
- Thank you received: 0
11 years 8 months ago #6906
by D_L_I
I have a problem with the scroller when I am setting it up as scroll direction horizontal.
I have two articles to scroll through, the first one is not displaying, then it scrolls vertically to next one, and when it suppose to go back to the first, it moves in the frame (again vertically) but immediately disappears.
you can see it here: simplem-test.tk (scroller is on the left-hand side)
when the direction is set to vertical all works fine and also the fade effect is working well.
any idea why it behaves like so and how to fix it?
I have two articles to scroll through, the first one is not displaying, then it scrolls vertically to next one, and when it suppose to go back to the first, it moves in the frame (again vertically) but immediately disappears.
you can see it here: simplem-test.tk (scroller is on the left-hand side)
when the direction is set to vertical all works fine and also the fade effect is working well.
any idea why it behaves like so and how to fix it?
Please Log in or Create an account to join the conversation.
- Saka
- Offline
- Administrator
11 years 8 months ago #6907
by Saka
Emir Sakic
www.sakic.net
You have to setup both width and height (on 2 places) in CSS. See the CSS files of our demo site for reference.
Emir Sakic
www.sakic.net
Please Log in or Create an account to join the conversation.
- D_L_I
- Topic Author
- Offline
- New Member
Less
More
- Thank you received: 0
11 years 8 months ago #6909
by D_L_I
thanks for the response.
I do have both of them set. here:
".ajaxscrl .mContainer {
width: 205px; /* edit this value for your own module width */
height: 124px; /* edit this value for your own module height */
display: block;
overflow: hidden;
position: relative;
}"
and here:
".ajaxscrl .mScroller div {
display: block;
text-align: right;
margin: 0;
width: 205px; /* edit this value for your own module width */
min-height: 124px; /* edit this value for your own module height */"
I do have both of them set. here:
".ajaxscrl .mContainer {
width: 205px; /* edit this value for your own module width */
height: 124px; /* edit this value for your own module height */
display: block;
overflow: hidden;
position: relative;
}"
and here:
".ajaxscrl .mScroller div {
display: block;
text-align: right;
margin: 0;
width: 205px; /* edit this value for your own module width */
min-height: 124px; /* edit this value for your own module height */"
Please Log in or Create an account to join the conversation.