View Single Post
Old 04-17-2012, 09:09 AM   PM User | #7
nsbresna
New to the CF scene

 
Join Date: Apr 2012
Posts: 7
Thanks: 0
Thanked 0 Times in 0 Posts
nsbresna is an unknown quantity at this point
Okay, thank you. I was confused as to what you meant.
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>DreamKey</title>
<link href="style/default.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="style/lightbox.css" type="text/css" media="screen" />


<script type="text/javascript" src="/js/prototype.js"></script>
<script type="text/javascript" src="/js/scriptaculous.js?load=effects"></script>
<script type="text/javascript" src="/js/lightbox.js"></script>

	<script type="text/javascript" src="js/jquery.js"></script>
	<script type="text/javascript" src="js/easySlider1.5.js"></script>


			
	</script>

    <script type="text/javascript" src="js/tabs.js"></script>
    
</head>
This is where I started to name them, then further beneath are just the header/navigation system. I'd read something about using the "body Onload" tag to separate the scripts. So I tried what was suggested, only for nothing to happen once again. This was what I inserted directly beneath the last bit:
Code:
<body onload="MM_preloadImages(‘/images/image-1.jpg’);initLightbox()">

Below the header/logo is this:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>DreamKey</title>
<link href="style/default.css" rel="stylesheet" type="text/css" />

	<script type="text/javascript" src="js/jquery.js"></script>
	<script type="text/javascript" src="js/easySlider1.5.js"></script>
	<script type="text/javascript">
		$(document).ready(function(){	
			$("#slider").easySlider();
		});	
	</script>

    <script type="text/javascript" src="js/tabs.js"></script>

</head>
Beneath that is the html linked to the easySlider

Then the navbar

And then the page content where it gets messed up:
Code:
<a href="images/posts/01.jpg" rel="lightbox" title="my caption">image #1</a>
nsbresna is offline   Reply With Quote