Jump to content

Slideshow Issue


tobyrice01

Recommended Posts

Here I am again...pleading for help! :D

On my site: http://bluehawkvirtual.net/index.php/

The slide show has 3 problems.

1. It does not start automaticly, you have to press the next button, and then it goes on by itself.

2. When it ends, it does not go back to the start. It just "disappears" from the site except for a small line about 10px tall. Fixed that myself.

3. Not important, but how can I make the slideshow smaller?

Here is the layout.tpl file code that I have:

<?php
/**
*
* STOP!!!!!!!!
*
* Are you editing the crystal skin directly?
* DON'T
*
* Copy and rename the crystal folder. Otherwise it'll get
* overwritten in an update.
*
* Also, READ THE DOCS
*
* http://www.phpvms.net/docs/skinning
*
*/
?><!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" xml:lang="en" lang="en" dir="ltr">
<head>
<link rel="icon" href="http://www.bluehawkvirtual.net/favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="http://www.bluehawkvirtual.net/favicon.ico" type="image/x-icon">
<meta http-equiv="X-UA-Compatible" content="IE=7">
<title><?php echo $page_title; ?></title>
<link rel="stylesheet" media="all" type="text/css" href="<?php echo SITE_URL?>/lib/skins/Arctic/dist/css/bootstrap.css" />
<link rel="stylesheet" media="all" type="text/css" href="<?php echo SITE_URL?>/lib/skins/Arctic/styles.css" />
<script src="https://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script type="text/javascript" src="<?php echo fileurl('lib/skins/Arctic/dist/js/bootstrap.js');?>"></script>
<style>

</style>
<?php
/* This is required, so phpVMS can output the necessary libraries it needs */
echo $page_htmlhead;
?>

<?php /*Any custom Javascript should be placed below this line, after the above call */ ?>



</head>

<body>
<?php
/* This should be the first thing you place after a <body> tag
This is also required by phpVMS */
echo $page_htmlreq;
?>
<?php

Template::Show('core_navigation.tpl');
?>
<div id="carousel-example-generic" class="carousel slide">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#carousel-example-generic" data-slide-to="0" class="active"></li>
<li data-target="#carousel-example-generic" data-slide-to="1"></li>
<li data-target="#carousel-example-generic" data-slide-to="2"></li>
<li data-target="#carousel-example-generic" data-slide-to="3"></li>
</ol>

<!-- Wrapper for slides -->
<div class="carousel-inner">


<div class="item active">
 <img src="<?php echo SITE_URL; ?>/lib/skins/Arctic/images/slide1.png">

</div>
 <div class="item">
 <img src="<?php echo SITE_URL; ?>/lib/skins/Arctic/images/slide2.png" alt="">
 </div>
<div class="item">
 <img src="<?php echo SITE_URL; ?>/lib/skins/Arctic/images/slide3.png" alt="">
 </div>
<div class="item">
 <img src="<?php echo SITE_URL; ?>/lib/skins/Arctic/images/slide4.png" alt="">
 </div>
<div class="item">
 <img src="<?php echo SITE_URL; ?>/lib/skins/Arctic/images/slide5.png" alt="">
 </div>
</div>

<!-- Controls -->
<a class="left carousel-control" href="#carousel-example-generic" data-slide="prev">
<span class="icon-prev"></span>
</a>
<a class="right carousel-control" href="#carousel-example-generic" data-slide="next">
<span class="icon-next"></span>
</a>
</div>
<div id="body">
<div class="item">
 <img src="<?php echo SITE_URL; ?>/lib/skins/Arctic/images/under slide banner.png" alt="">
 </div>




<div class="alert alert-info">

<?php
if(!Auth::LoggedIn())
{
echo "<i style='font-size:14px;'>You are not logged in. <a href='".url('/login')."'>Click here to login</a></i>";
}else{
?>
<i style='font-size:14px;' >Welcome back, <?php echo Auth::$userinfo->firstname; ?>!</i>
<div style="float:right;"><a class="btn btn-default btn-xs" style="text-decoration:none;" href="<?php echo url('/profile'); ?>" >Pilot Panel</a> <a style="text-decoration:none;" class="btn btn-default btn-xs" href="<?php echo url('/logout'); ?>">Log Out</a></div>
<?php
}
?>

</div>
<div id="bodytext">

<?php
/* This will insert all of the "meat" of the page in there - the template
which is generated, depending on which page you're on. To change these
templates, check out the docs on the site. They're under the /core/templates
folder, and to change them, copy them into the folder of your skin (the
folder this file is in right now.
*/

echo $page_content;

?>

</div>
</div>
<div id="footer">
<p>copyright © 2013 - 2014 <?php echo date('Y') ?> - <?php echo SITE_NAME; ?><br />
<!-- Please retain this!! It's part of the phpVMS license. You must display a
"powered by phpVMS" somewhere on your page. Thanks! -->
<a href="http://www.phpvms.net" target="_blank">Powered by phpVMS</a> | Designed by <a href="http://www.zumeweb.com" target="_blank">Zumeweb.com</a></p>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
<link rel="icon" href="/favicon.ico" type="image/x-icon">

</div>

</body>
</html>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...