Link to home
Create AccountLog in
Avatar of cgray1223
cgray1223

asked on

make a UL element scrollable

Hello,

I'm having issues making the <ul class="demo2"> below scrollable, is there any way to just make the UL element instead of the entire DIV scrollable?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="jquery.youtubeplaylist.js"></script> 
<script type="text/ecmascript">	
		$(function() {
			$("ul.demo2").ytplaylist({addThumbs:true, autoPlay: false, holderId: 'ytvideo2', allowFullScreen:true});
		});	
</script>
<style type="text/css">
#ytvideo,
#ytvideo2 {
    float: left;
	margin-right:10px;
}
.yt_holder {
    background: #f3f3f3;
    padding: 10px;
    float: left;
    border: 1px solid #e3e3e3;
	margin-bottom:15px;
}
ul {
    float: left;
    margin: 0;
    padding: 0;
    width: 220px;
}
ul li {
    list-style-type: none;
    display:block;
    background: #f1f1f1;
    float: left;
    width: 216px;
    margin-bottom: 5px;
	padding:2px;
}
ul li img {
    width: 120px;
    float: left;
    margin-right: 5px;
    border: 1px solid #999;
}
ul li a {
    font-family: georgia;
    text-decoration: none;
    display: block;
    color: #000;
}
.currentvideo {
	background: #FFCCFF;
}	
</style>
</head>
<body>
	<div id="page">    	 
		<div class="yt_holder">
			<ul class="demo2">
				<li><a href="http://www.youtube.com/watch?v=qqu6DNLKscM">Video 1</a></li>
				<li><a href="http://www.youtube.com/watch?v=qrO4YZeyl0I">Video 2</a></li>
				<li><a href="http://www.youtube.com/watch?v=OihixBV-8pU">Video 3</a></li>
			</ul>
			<div id="ytvideo2"></div>			
		</div>    
    </div>	
</body>
</html>

Open in new window



ASKER CERTIFIED SOLUTION
Avatar of Sudaraka Wijesinghe
Sudaraka Wijesinghe
Flag of Sri Lanka image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer