Results 1 to 6 of 6

Thread: Easy Slider 1.7 JQuery

  1. #1
    Join Date
    Aug 2010
    Posts
    45
    Thanks
    6
    Thanked 1 Time in 1 Post

    Default Easy Slider 1.7 JQuery

    I've looked everywhere... tried to join the JQuery forum but they are reviewing my application? really would like to lay this puppy to rest.
    I have easyslider 1.7 on a site I'm building... everythings good but they would like to have the numeric controls appear aligned on the right side below the sliding images instead of the align left.

    http://www.threefooter.com/easyslider_numeric

    I tried every conceivable combination in the css file... I assumed it would be simply change the float:left to float:right (not)

    below is the CSS numeric controls:

    /* numeric controls */

    ol#controls{
    margin:1em 10;
    padding:0;
    height:28px;
    }
    ol#controls li{
    margin:0 10px 0 0;
    padding:0;
    float:left;
    list-style:none;
    height:28px;
    line-height:28px;
    }
    ol#controls li a{
    float:left;
    height:28px;
    line-height:28px;
    border:1px solid #ccc;
    background:#DAF3F8;
    color:#555;
    padding:0 10px;
    text-decoration:none;
    }
    ol#controls li.current a{
    background:#5DC9E1;
    color:#fff;
    }
    ol#controls li a:focus, #prevBtn a:focus, #nextBtn a:focus{outline:none;}

    Any help would be greatly appricated.

    Lasa2

  2. #2
    Join Date
    Oct 2009
    Posts
    845
    Thanks
    14
    Thanked 189 Times in 188 Posts

    Default

    I think this looks about right
    Code:
    ol#controls {
    height:100px;
    margin-bottom:1em;
    margin-left:320px;
    margin-right:-20px;
    margin-top:1em;
    padding:0;
    }
    If everything else is left the way it is.

  3. #3
    Join Date
    Aug 2010
    Posts
    45
    Thanks
    6
    Thanked 1 Time in 1 Post

    Default

    Perfect!!.. thank you! You don't know how I've been looking for this all over the place...

    Lasa2

  4. #4
    Join Date
    Aug 2010
    Posts
    45
    Thanks
    6
    Thanked 1 Time in 1 Post

    Default

    Wow since I never expected that.. can I ask how to have the numeric controls closer to the sliding images? I tried changing the height: 100px but it didn't work.
    http://www.threefooter.com/easyslider_numeric

  5. #5
    Join Date
    Oct 2009
    Posts
    845
    Thanks
    14
    Thanked 189 Times in 188 Posts

    Default

    You can change the margin-top to what you like, for example 4px
    Code:
    ol#controls {
    height:100px;
    margin-bottom:1em;
    margin-left:320px;
    margin-right:-20px;
    margin-top:4px;
    padding:0;
    }

  6. #6
    Join Date
    Aug 2010
    Posts
    45
    Thanks
    6
    Thanked 1 Time in 1 Post

    Default

    Perfect! ... I am so glad I found this forum!
    Thanks again,

    Lasa2

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
  •