Сообщение от Aetae
			 
		
	 | 
	| 
		Код примера, без кода никто не поможет.
	 | 
	
Многовато будет..
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link href="css/main.css" rel="stylesheet" type="text/css" />
<link href="css/style_1024х768.css" rel="stylesheet" type="text/css" />
<link href="css/media-queries.css" rel="stylesheet" type="text/css" media="screen" />
<script type="text/javascript" src="js/jquery-1.11.2.min.js"></script>
<script type="text/javascript" src="js/jquery.cycle.all.js"></script>
<script type="text/javascript" src="js/main.js"></script>
	</head>
	<body>
	<div id="slider">
		<div id="container">
			<div class="back"><img src="img/prevImgBtn.png"></div>
			<div class="images" id="stylesheet">
			<div id="img1"></div>
			<div id="img2"></div>
			<div id="img3"></div>
			<div id="img4"></div>
			<div id="img5"></div>
			</div>
			<div class="next"><img src="img/nextImgBtn.png"></div>
		</div>
	</div>
	</body>
	</html>
Вот основной CSS
body{
background: #ccc;
margin: 0 0 0 0;
}
#slider{
width: auto;
height: auto;
display: block;
-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,1);
-moz-box-shadow: 0px 0px 10px rgba(0,0,0,1);
box-shadow: 0px 0px 10px rgba(0,0,0,1);
margin: auto auto;
}
#container{
margin: auto auto;
padding: auto auto;
width: auto;
height: auto;
background: #ccc;
display: block;
overflow: auto;
}
.back{
padding-top: 420px;
padding-left: 25px;
float: left;
display: block;
z-index: 99;
position: relative;
}
.next{
padding-top: 420px;
padding-right: 25px;
float: right;
display: block;
z-index: 99;
position: relative;
}
.images{
margin: auto auto;
padding: auto auto;
width: 100%;
height: 100%;
overflow: hidden;
float:left;
position: absolute;
}
Фрагмент CSS подключаемый при определении пропорций монитора
@media screen and (max-aspect-ratio: 19/10) and (min-aspect-ratio: 17/10) {  /* разрешение 16/10*/
 #img1{
background: url(../images/1.1.jpg) no-repeat center center;
background-size: cover;        
-webkit-background-size: content;
 -o-background-size: content;
 -moz-background-size: content;
margin: 0 0 0 0;
padding: 0 0 0 0;
width: 100%;
height: 100%;
}
#img2{
background: url(../images/2.1.jpg) no-repeat center center;
background-size: cover;        
-webkit-background-size: content;
 -o-background-size: content;
 -moz-background-size: content;
margin: 0 0 0 0;
padding: 0 0 0 0;
width: 100%;
height: 100%;
}
#img3{
background: url(../images/3.1.jpg) no-repeat center center;
background-size: cover;        
-webkit-background-size: content;
 -o-background-size: content;
 -moz-background-size: content;
margin: 0 0 0 0;
padding: 0 0 0 0;
width: 100%;
height: 100%;
}
#img4{
background: url(../images/4.1.jpg) no-repeat center center;
background-size: cover;        
-webkit-background-size: content;
 -o-background-size: content;
 -moz-background-size: content;
margin: 0 0 0 0;
padding: 0 0 0 0;
width: 100%;
height: 100%;
}
#img5{
background: url(../images/5.1.jpg) no-repeat center center;
background-size: cover;        
-webkit-background-size: content;
 -o-background-size: content;
 -moz-background-size: content;
margin: 0 0 0 0;
padding: 0 0 0 0;
width: 100%;
height: 100%;
}
}
Скрипт слайдера не выкладываю, чтобы не перегружать эфир, если нужно - выложу.