Hi i am trying to add localscroll jquery on this html but it is not working
help me please
it is here
http://reallybesthost.com/test/
you can download
http://reallybesthost.com/test.zip
i want to make it like Themeforest presenter
http://bitpublimedia.ro/themeforest/presenter/
but on the basis of x axis , it is on y axis
- Author had a File in an Envato Bundle
- Author was Featured
- Bought between 1 and 9 items
- Europe
- Exclusive Author
- Has been a member for 2-3 years
- Item was Featured
- Referred between 100 and 199 users
$('#services-menu').localScroll({
target:'#services-container'
});
Thanks for you help brother but it is not work you can see the demo i tried you’r code
Please help me
- Author had a File in an Envato Bundle
- Author was Featured
- Bought between 1 and 9 items
- Europe
- Exclusive Author
- Has been a member for 2-3 years
- Item was Featured
- Referred between 100 and 199 users
DOCUMENT READY is really important…..
<script type="text/javascript">
$(document).ready(function($) {
$('#services-menu').localScroll({
target:'#services-container'
});
});
</script>
Thanks brother you really help me Please help one more time i want to move content on x axis it is moving on y axis
i tried this
$(document).ready(function($) {
$('#services-menu').localScroll({
target:'#services-container',
axis: 'x'
});
});
but it is not working
thanks for you help
- Author had a File in an Envato Bundle
- Author was Featured
- Bought between 1 and 9 items
- Europe
- Exclusive Author
- Has been a member for 2-3 years
- Item was Featured
- Referred between 100 and 199 users
Align your divs with float left …...
Thanks for your help but it not work i floats left the target divs and set the axis: ‘x’ but not work check the styles
reallybesthost.com/test/style.css
if you want to slide horizontal, just a quick tip for #services-container.
the container needs the width of all elements contained. Otherwise it can not be scrolled and the float left is not taking any effect.
remove the overflow from the #services-container and add it to the parent .col-460 which width and height should be the viewport of your slide.
doitmax
Hey thanks for you reply but it is not working
can you show me the css what i have to do
i remove the overflow:hidden fro,m #services-container and put it on .col-460 but not work
doitmax said
if you want to slide horizontal, just a quick tip for #services-container.the container needs the width of all elements contained. Otherwise it can not be scrolled and the float left is not taking any effect.
remove the overflow from the #services-container and add it to the parent .col-460 which width and height should be the viewport of your slide.
doitmax
