Results 1 to 2 of 2

Thread: UF Slideshow - Border Radius

  1. #1
    Join Date
    Aug 2010
    Posts
    1
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default UF Slideshow - Border Radius

    1) Script Title:
    Ultimate Fadein Slideshow (2.4)

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

    3) Describe problem:

    Trying to apply a border radius in CSS to the slideshow. Please help. Where should this be done?

    Thanks,

    Mark

  2. #2
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    If you mean apply rounded borders around the slideshow, you can use CSS3 for that (currently doesn't work in IE up to IE8, however):

    Code:
    <style type="text/css">
    
    #fadeshow1{
    border-radius: 8px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    }
    
    </style>
    This assume your slideshow container is as follows:

    Code:
    <div id="fadeshow1"></div>
    DD Admin

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
  •