Quote:
|
Are you able to show us how you did this?
|
Hi Connor,
I went to the
InnerFade page, viewed the page source and copied these lines:
Code:
<meta http-equiv="imagetoolbar" content="no" />
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/jquery.innerfade.js"></script>
<script type="text/javascript">
$(document).ready(
function(){
$('ul#portfolio').innerfade({
speed: 1000,
timeout: 5000,
type: 'sequence',
containerheight: '220px'
});
});
</script>
<link rel="stylesheet" href="css/reset.css" type="text/css" media="all" />
<link rel="stylesheet" href="css/fonts.css" type="text/css" media="all" />
<style type="text/css" media="screen, projection">
@import url(css/jq_fade.css);
</style>
(i.e. ignoring the code for the news ticker and the other classes which I haven't used). I pasted all of the above into the
<!--Page Head--> section in Source View.
As for the rest of the code, I simply pasted in
Code:
<ul id="portfolio">
<li>
after
<!--MainDivStart--> and added the remaining lines
Code:
</li>
<li>
<a href="...">
<img src="..." alt="..."></a>
</li>
.
.
.
</ul>
before the
<!--MainDivEnd--> placeholder.
As noted above, I used the File Manager to add the images to the 'images' folder.
I hope this helps.
Alfred