Results 1 to 2 of 2

Thread: editing border for slideshow

  1. #1
    Join Date
    Oct 2007
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default editing border for slideshow

    1) Ultimate Fade-In Slideshow

    2) http://www.tutorialized.com/view/tut...ide-show/11145

    3) How can I edit the color and padding of the border for this slideshow?

    Thanks for your help!

  2. #2
    Join Date
    Jul 2006
    Location
    just north of Boston, MA
    Posts
    1,806
    Thanks
    13
    Thanked 72 Times in 72 Posts

    Default

    change
    Code:
    <style type="text/css">
    .centerdiv{ /*IE method of centering a relative div*/
    text-align: center;
    }
    
    .centerdiv>div{ /*Proper way to center a relative div*/
    margin: 0 auto;
    }
    </style>
    to
    Code:
    <style type="text/css">
    .centerdiv{ /*IE method of centering a relative div*/
    text-align: center;
    padding: something;
    border: something;
    }
    
    .centerdiv>div{ /*Proper way to center a relative div*/
    margin: 0 auto;
    padding: something;
    border: something;
    }
    </style>

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
  •