Results 1 to 7 of 7

Thread: Remove Scroll Bar

  1. #1
    Join Date
    May 2010
    Posts
    15
    Thanks
    5
    Thanked 0 Times in 0 Posts

    Default Remove Scroll Bar

    1) Script Title: Stepcarousel

    2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...epcarousel.htm

    3) Describe problem: I've had to combine css and js pages to ensure faster downloading for IE. Having done that, I now have a scroll bar on my stepcarousel. Eg: http://www.jacksdesign.co.uk/commiss...18W_simple.php

    Woud you please tell me how to remove it?

    Many thanks.

    Vicky

  2. #2
    Join Date
    Dec 2008
    Location
    Portsmouth, UK
    Posts
    1,891
    Thanks
    2
    Thanked 441 Times in 435 Posts

    Default

    you have not included the JQuery code so the script is not initialising

    if you are conseren about the size of the code the do not use JQuery

    the solution I gave on post

    http://www.dynamicdrive.com/forums/s...ad.php?t=55765

    uses minimal code

    BTW it is polite to answer replies to your posted requests
    Vic
    God Loves You and will never love you less.
    http://www.vicsjavascripts.org/Home.htm
    If my post has been useful please donate to http://www.operationsmile.org.uk/

  3. #3
    Join Date
    May 2010
    Posts
    15
    Thanks
    5
    Thanked 0 Times in 0 Posts

    Default Remove Scroll Bar

    Dear Vic

    Thank you for that. I'm sorry that I haven't replied to your previous replies to my other query. I'm very grateful when people take the time to help me out.

    I'll try this and let you know how it went.

    Vicky

  4. #4
    Join Date
    May 2010
    Posts
    15
    Thanks
    5
    Thanked 0 Times in 0 Posts

    Default remove scroll bar

    Hi Vic

    I have tried what you described and this is what I get: http://www.jacksdesign.co.uk/commiss...18W_simple.php

    I've removed the css so it looks a little strange, but it's the stepcarousel that I'm interested in. It still has the scrollbar around the box.

    Do you have any further ideas?

    Thank you in advance.

    Vicky

  5. #5
    Join Date
    Dec 2008
    Location
    Portsmouth, UK
    Posts
    1,891
    Thanks
    2
    Thanked 441 Times in 435 Posts

    Default

    have another look at my example

    it has

    Code:
    <script  type="text/javascript">
    /*<![CDATA[*/
    
    new StepCarousel({
     galleryid: 'bottom', //id of carousel DIV
     panelclass: 'panel', //class of panel DIVs each holding content
     moveby:8,
     GoTo:2,             // set this to the set number to be visible on page load
     LeftNav:'left',
     RightNav:'right',
     Speed:500
    });
    
    /*]]>*/
    </script>
    immediatly before the </BODY> tag
    Vic
    God Loves You and will never love you less.
    http://www.vicsjavascripts.org/Home.htm
    If my post has been useful please donate to http://www.operationsmile.org.uk/

  6. #6
    Join Date
    May 2010
    Posts
    15
    Thanks
    5
    Thanked 0 Times in 0 Posts

    Default Remove Scroll Bar

    Dear Vic

    Thank you for that.

    Seems to work fine in Safari, Opera and Firefox, however the scrollbar is still there when viewed in IE6 - really very annoying.

    Also, I've lost my right and left arrows:

    http://www.jacksdesign.co.uk/commiss...18W_simple.php

    Thank you for all your help with this.

    Vicky

  7. #7
    Join Date
    Dec 2008
    Location
    Portsmouth, UK
    Posts
    1,891
    Thanks
    2
    Thanked 441 Times in 435 Posts

    Default

    1) change the width of class name .belt to 20000px

    2) the left and right controlls must be defined in the HTML and positiond as required.

    Code:
    .........
    
        	</div>
    <img id="right" src="http://www.jacksdesign.co.uk/rings/ellipse/../../images/arrow_left.gif"  style="position:relative;top:0px;" />
    <img id="left" src="http://www.jacksdesign.co.uk/rings/ellipse/../../images/arrow_right.gif" style="position:relative;left:860px;top:0px;"    />
    
    
            <div id="footer">
    				        <div id="footer_right"><a href="http://www.goodwebdesignuk.com" target="_blank" class="bottom">website design</a></div>
            <div id="footer_left">&copy; Jacks Jewellery Design 2010</div>
    
    ..............
    3) the initialise call is

    Code:
    <script  type="text/javascript">
    /*<![CDATA[*/
    
    new StepCarousel({
     galleryid: 'bottom', //id of carousel DIV
     panelclass: 'panel', //class of panel DIVs each holding content
     moveby:8,
     GoTo:2,             // set this to the set number to be visible on page load
     LeftNav:'left',
     RightNav:'right',
     Speed:500
    });
    
    /*]]>*/
    </script>
    this is all in my previous example
    Vic
    God Loves You and will never love you less.
    http://www.vicsjavascripts.org/Home.htm
    If my post has been useful please donate to http://www.operationsmile.org.uk/

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •