Results 1 to 9 of 9

Thread: Swiss Army Slideshow - Button positioning

  1. #1
    Join Date
    Jun 2011
    Posts
    11
    Thanks
    6
    Thanked 0 Times in 0 Posts

    Default Swiss Army Slideshow - Button positioning

    1) Script Title: Swiss Army Slideshow

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

    3) Describe problem:

    Hi, I was wondering is there anyway to position the buttons and description (in slide2) to the side of the slideshow rather than below the images.

    Thanks for any help!

    Shane

  2. #2
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  3. The Following User Says Thank You to jscheuer1 For This Useful Post:

    shanecorcoran89 (07-20-2011)

  4. #3
    Join Date
    Jun 2011
    Posts
    11
    Thanks
    6
    Thanked 0 Times in 0 Posts

    Default

    Hi John,

    Sorry but i cant seem to figure out how to change the position of the buttons and description, could you please let me know where about in the js file i need to change??

    Thanks
    Shane

  5. #4
    Join Date
    Jun 2011
    Posts
    11
    Thanks
    6
    Thanked 0 Times in 0 Posts

    Default

    Hi,
    Can anyone please help me with the following post.
    Im not too sure what code to edit on the swiss army slide

    Any help would be much appreciated

    Thanks

  6. #5
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Tell me where you want the buttons and descriptions to be and post a link to a page on your site that shows what you have so far.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  7. #6
    Join Date
    Jun 2011
    Posts
    11
    Thanks
    6
    Thanked 0 Times in 0 Posts

    Default Button positioning

    Hi,

    Im not online with it yet but ive attached a screen shot if that would be any help


    Thanks for reply

  8. #7
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    Something like:

    http://home.comcast.net/~jscheuer1/s...ss_updateb.htm

    ?

    If so, use your browser's 'view source' to get the code.

    Any questions, feel free to ask.
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  9. The Following User Says Thank You to jscheuer1 For This Useful Post:

    shanecorcoran89 (07-22-2011)

  10. #8
    Join Date
    Jun 2011
    Posts
    11
    Thanks
    6
    Thanked 0 Times in 0 Posts

    Default

    Hi John,

    That worked great, thank you very much, its exactly what i was looking for!!

    Sorry to be annoying but is there any way to change the slideshow background color to transparent, whenever i change it, the images overlay and you can see bigger images behind smaller images, Does there have to be a solid color as a background?

    Thanks again

    Shane

  11. #9
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    You've really answered your own question. Yes but then there will be bleed through if different sized images are involved.

    However, if your purpose is to make it appear as though a background image is showing through, that can often be done, but not always.

    Say you have a background image for the body, say it's mybg.jpg. You can then put this in the style section:

    Code:
    #canvas0_0, #canvas0_1 {
    	background-image: url(mybg.jpg);
    }
    But it probably won't line up with the image for the body. So you can use the the background-position property, example:

    Code:
    #canvas0_0, #canvas0_1 {
    	background-image: url(mybg.jpg);
    	background-position: 20px 100px;
    }
    20px is how far from the left you want the background image to start, 200px is how far from the top. Negative values may be used. Trial and error may be required to get the required values. If the layout is fluid, there may be no values that will work in all window sizes.

    Setting the html and body elements' margin and padding to 0 will help make it more cross browser, that's assuming the layout is amenable in the first place.

    If you want more help with it you would have to put up a demo of the page somewhere I can see it in action.
    Last edited by jscheuer1; 07-25-2011 at 08:14 PM. Reason: add info
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

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
  •