2011-08-06 9 views
0

"페이지 매김"영역을 슬라이더 이미지 위로 이동하고 싶습니다.CSS - 요소 다시 배치

달성하기가 쉬운가요?

현재 그들은 슬라이더 이미지 이하 :이 어떻게해야합니까 http://slidesjs.com/examples/standard/

? 어떤 포인터에 대한

/* 
    Slideshow 
*/ 

#slides { 
    position:absolute; 
    top:15px; 
    left:4px; 
    z-index:100; 
} 

/* 
    Slides container 
    Important: 
    Set the width of your slides container 
    Set to display none, prevents content flash 
*/ 

.slides_container { 
    width:570px; 
    height:270px; 
    overflow:hidden; 
    position:relative; 
    display:none; 
} 

/* 
    Each slide 
    Important: 
    Set the width of your slides 
    If height not specified height will be set by the slide content 
    Set to display block 
*/ 

.slides_container a { 
    width:570px; 
    height:270px; 
    display:block; 
} 

/* 
    Next/prev buttons 
*/ 

#slides .next,#slides .prev { 
    position:absolute; 
    top:107px; 
    left:-39px; 
    width:24px; 
    height:43px; 
    display:block; 
    z-index:101; 
} 

#slides .next { 
    left:585px; 
} 

/* 
    Pagination 
*/ 

.pagination { 
    margin:26px auto 0; 
    width:100px; 
} 

.pagination li { 
    float:left; 
    margin:0 1px; 
    list-style:none; 
} 

.pagination li a { 
    display:block; 
    width:12px; 
    height:0; 
    padding-top:12px; 
    background-image:url(../img/pagination.png); 
    background-position:0 0; 
    float:left; 
    overflow:hidden; 
} 

.pagination li.current a { 
    background-position:0 -12px; 
} 

많은 감사 :

여기에 사용되는 CSS 코드입니다.

답변

2

은위한

.pagination 
{ 
    position:relative; 
    top:-332px; 
} 
+0

와우 작동이 CSS 클래스를 추가! 그리고 그 것처럼 우리는 행복합니다. D 많은 감사합니다! – michaelmcgurk

+0

Shankar에게 다시 한 번 감사드립니다. 아주 멋지다. 좋은 하루 되세요/주말 :) – michaelmcgurk