Viewing 3 posts - 16 through 18 (of 18 total)
  • Author
    Posts
  • Menalto Friend
    #265276

    <?php
    /**
    * @copyright Copyright (C) 2005 - 2007 Open Source Matters. All rights reserved.
    * @license GNU/GPL, see LICENSE.php
    * Joomla! is free software. This version may have been modified pursuant
    * to the GNU General Public License, and as distributed it includes or
    * is derivative of works licensed under the GNU General Public License or
    * other free or open source software licenses.
    * See COPYRIGHT.php for copyright notices and details.
    */

    // no direct access
    defined( '_JEXEC' ) or die( 'Restricted access' );

    include_once (dirname(__FILE__).DS.'ja_vars_1.5.php');

    ?>

    <!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="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>">

    <head>
    <jdoc:include type="head" />
    <?php JHTML::_('behavior.mootools'); ?>

    <link rel="stylesheet" href="<?php echo $tmpTools->baseurl(); ?>templates/system/css/system.css" type="text/css" />
    <link rel="stylesheet" href="<?php echo $tmpTools->baseurl(); ?>templates/system/css/general.css" type="text/css" />
    <link rel="stylesheet" href="<?php echo $tmpTools->templateurl(); ?>/css/editor.css" type="text/css" />

    <link rel="stylesheet" href="<?php echo $tmpTools->templateurl(); ?>/highslide/highslide.css" type="text/css" />
    <link rel="stylesheet" href="<?php echo $tmpTools->templateurl(); ?>/css/template.css" type="text/css" />
    <link rel="stylesheet" href="<?php echo $tmpTools->templateurl(); ?>/css/typo.css" type="text/css" />
    <link rel="stylesheet" href="<?php echo $tmpTools->templateurl(); ?>/css/ja.news.css" type="text/css" />
    <link href="<?php echo $tmpTools->templateurl(); ?>/mootabs/mootabs1.2.css" rel="stylesheet" type="text/css" />
    <script language="javascript" type="text/javascript" src="<?php echo $tmpTools->templateurl(); ?>/js/ja.script.js"></script>

    <script language="javascript" type="text/javascript" src="<?php echo $tmpTools->templateurl(); ?>/highslide/swfobject.js"></script>
    <script language="javascript" type="text/javascript" src="<?php echo $tmpTools->templateurl(); ?>/highslide/highslide-with-html.packed.js"></script>

    <!-- Menu head -->
    <?php $jamenu->genMenuHead(); ?>

    <link href="<?php echo $tmpTools->templateurl(); ?>/css/colors/theme<?php echo $tmpTools->getThemeForSection(); ?>.css" rel="stylesheet" type="text/css" />

    <!-->
    <style type="text/css">
    .clearfix {height: 1%;}
    img {border: none;}
    </style>
    <!-->

    <!-->
    <style type="text/css">
    .clearfix {display: inline-block;}
    </style>
    <!-->

    <?php if ($tmpTools->isIE6()) { ?>
    <!-->
    <script type="text/javascript">
    var siteurl = '<?php echo $tmpTools->baseurl();?>';
    </script>
    <!-->
    <?php } ?>

    <script type="text/javascript">
    hs.graphicsDir = '<?php echo $tmpTools->templateurl(); ?>/highslide/graphics/';
    hs.showCredits = true; // you can set this to false if you want
    hs.creditsText = 'Powered by JA Highslide';
    hs.creditsHref = 'http://joomlart.com/';
    hs.creditsTitle ='Go to the Highslide JA homepage';
    </script>

    </head>

    <body id="bd" class="<?php echo $tmpTools->getParam(JA_TOOL_SCREEN);?> fs<?php echo $tmpTools->getParam(JA_TOOL_FONT);?>" >
    <a name="Top" id="Top"></a>
    <ul class="accessibility">
    <li><a href="<?php echo $tmpTools->getCurrentURL();?>#ja-content" title="<?php echo JText::_("Skip to content");?>"><?php echo JText::_("Skip to content");?></a></li>
    <li><a href="<?php echo $tmpTools->getCurrentURL();?>#ja-mainnav" title="<?php echo JText::_("Skip to main navigation");?>"><?php echo JText::_("Skip to main navigation");?></a></li>
    <li><a href="<?php echo $tmpTools->getCurrentURL();?>#ja-col1" title="<?php echo JText::_("Skip to 1st column");?>"><?php echo JText::_("Skip to 1st column");?></a></li>
    <li><a href="<?php echo $tmpTools->getCurrentURL();?>#ja-col2" title="<?php echo JText::_("Skip to 2nd column");?>"><?php echo JText::_("Skip to 2nd column");?></a></li>
    </ul>

    <div id="ja-wrapper">

    <!-- BEGIN: HEADER -->
    <div id="ja-headerwrap">
    <div id="ja-header" class="clearfix">

    <?php
    $siteName = $tmpTools->sitename();
    if ($tmpTools->getParam('logoType')=='image') { ?>
    <h1 class="logo">
    <a href="index.php" title="<?php echo $siteName; ?>"><span><?php echo $siteName; ?></span></a>
    </h1>
    <?php } else {
    $logoText = (trim($tmpTools->getParam('logoText'))=='') ? $config->sitename : $tmpTools->getParam('logoText');
    $sloganText = (trim($tmpTools->getParam('sloganText'))=='') ? JText::_('SITE SLOGAN') : $tmpTools->getParam('sloganText'); ?>
    <h1 class="logo-text">
    <a href="index.php" title="<?php echo $siteName; ?>"><span><?php echo $logoText; ?></span></a>
    </h1>
    <p class="site-slogan"><?php echo $sloganText;?></p>
    <?php } ?>

    <div id="ja-headtools" class="ja-headtool">
    <div class="ja-innerpad clearfix">

    <div class="ja-day">
    <?php
    echo "<span>".date ('l')."</span>";
    echo " <div>".date ('M')." ".date ('d').date ('S')."</div>";
    ?>
    </div>

    <ul>
    <jdoc:include type="modules" name="ja-login" />
    <!--module search-->
    <?php if($this->countModules('user4')) : ?>
    <jdoc:include type="modules" name="user4" />
    <?php endif; ?>
    </ul>

    <?php if ($tmpTools->getParam(JA_TOOL_USER)) { ?>
    <div id="ja-usertools">
    <strong>Text size</strong><?php $tmpTools->genToolMenu($tmpTools->getParam(JA_TOOL_USER)); ?>
    </div>
    <?php } ?>

    </div>
    </div>

    </div>
    </div>
    <!-- END: HEADER -->

    <!-- BEGIN: MAIN NAVIGATION -->
    <div id="ja-mainnavwrap">
    <div id="ja-mainnav" class="clearfix">
    <?php $jamenu->genMenu (0); ?>
    </div>
    </div>
    <?php if ($hasSubnav) { ?>
    <div id="ja-subnavwrap">
    <div id="ja-subnav" class="clearfix">
    <?php $jamenu->genMenu (1,1); ?>
    </div>
    </div>
    <?php } ?>
    <!-- END: MAIN NAVIGATION -->

    <div id="ja-containerwrap<?php echo $divid; ?>" class="clearfix">

    <div id="ja-container">
    <div id="ja-container-inner" class="clearfix">

    <!-- BEGIN: CONTENT -->
    <div id="ja-content">
    <div class="ja-innerpad clearfix">

    <jdoc:include type="message" />

    <?php if(!$tmpTools->isFrontPage()) : ?>
    <div id="ja-pathway">
    <jdoc:include type="module" name="breadcrumbs" />
    </div>
    <?php endif ; ?>

    <div id="ja-current-content">

    <?php if(!$tmpTools->isFrontPage()) : ?>
    <jdoc:include type="component" />
    <?php endif; ?>

    <!-- BEGIN: JAZIN -->
    <?php if($tmpTools->isFrontPage()) : ?>
    <div id="jazin-fp">
    <jdoc:include type="modules" name="ja-news" style="raw" />
    </div>
    <?php endif; ?>
    <!-- END: JAZIN -->

    </div>
    <?php if($this->countModules('banner')) : ?>
    <!-- BEGIN: BANNER -->
    <div id="ja-banner">
    <jdoc:include type="modules" name="banner" />
    </div>
    <!-- END: BANNER -->
    <?php endif; ?>

    </div>
    </div>
    <!-- END: CONTENT -->

    <?php if ($ja_left || $ja_right || $ja_masscol) { ?>
    <!-- BEGIN: COLUMNS -->
    <div id="ja-colwrap">

    <?php if ($ja_masscol) { ?>
    <!-- BEGIN: MASSCOL -->
    <div id="ja-colmass" class="clearfix">
    <div class="ja-innerpad">

    <jdoc:include type="modules" name="user5" style="xhtml" />

    <?php if ($this->countModules('user6')) : ?>
    <script language="javascript" type="text/javascript" src="<?php echo $tmpTools->templateurl(); ?>/mootabs/mootabs1.2.js"></script>
    <script type="text/javascript">
    window.addEvent('load', initmootabs);
    function initmootabs() {
    myTabs1 = new jamootabs('ja-tabs', {
    <?php echo $ja_mootabs_options; ?>
    });
    }
    </script>
    <div id="ja-tabswrap">
    <div id="ja-tabs" class="clearfix">
    <div class="ja-tab-panels">
    <jdoc:include type="modules" name="user6" style="xhtml" />
    </div>
    </div>
    </div>
    <?php endif; ?>

    <jdoc:include type="modules" name="user7" style="xhtml" />

    </div>
    </div>
    <!-- END: MASSCOL -->
    <?php } ?>

    <div id="ja-cols" class="clearfix">
    <?php if ($ja_left) { ?>
    <div id="ja-col1">
    <div class="ja-innerpad">
    <jdoc:include type="modules" name="left" style="xhtml" />
    </div>
    </div>
    <?php } ?>

    <?php if ($ja_right) { ?>
    <div id="ja-col2">
    <div class="ja-innerpad">
    <jdoc:include type="modules" name="right" style="xhtml" />
    </div>
    </div>
    <?php } ?>
    </div>

    </div><br />
    <!-- END: COLUMNS -->
    <?php } ?>

    </div></div></div>
    <?php
    $spotlight = array ('user8','user9','user10','user11','user12');
    $botsl = $tmpTools->calSpotlight ($spotlight,$tmpTools->isOP()?100:99.9);
    if( $botsl ) {
    ?>
    <!-- BEGIN: BOTTOM SPOTLIGHT -->
    <div id="ja-botsl" class="clearfix">

    <?php if( $this->countModules('user8') ) {?>
    <div class="ja-box<?php echo $botsl['user8']['class']; ?>" style="width: <?php echo $botsl['user8']['width']; ?>;">
    <jdoc:include type="modules" name="user8" style="xhtml" />
    </div>
    <?php } ?>

    <?php if( $this->countModules('user9') ) {?>
    <div class="ja-box<?php echo $botsl['user9']['class']; ?>" style="width: <?php echo $botsl['user9']['width']; ?>;">
    <jdoc:include type="modules" name="user9" style="xhtml" />
    </div>
    <?php } ?>

    <?php if( $this->countModules('user10') ) {?>
    <div class="ja-box<?php echo $botsl['user10']['class']; ?>" style="width: <?php echo $botsl['user10']['width']; ?>;">
    <jdoc:include type="modules" name="user10" style="xhtml" />
    </div>
    <?php } ?>

    <?php if( $this->countModules('user11') ) {?>
    <div class="ja-box<?php echo $botsl['user11']['class']; ?>" style="width: <?php echo $botsl['user11']['width']; ?>;">
    <jdoc:include type="modules" name="user11" style="xhtml" />
    </div>
    <?php } ?>

    <?php if( $this->countModules('user12') ) {?>
    <div class="ja-box<?php echo $botsl['user12']['class']; ?>" style="width: <?php echo $botsl['user12']['width']; ?>;">
    <jdoc:include type="modules" name="user12" style="xhtml" />
    </div>
    <?php } ?>

    </div>
    <!-- END: BOTTOM SPOTLIGHT -->
    <?php } ?>
    <!-- BEGIN: FOOTER -->
    <div id="ja-footerwrap" class="clearfix">
    <div id="ja-footer">
    <jdoc:include type="modules" name="user3" />
    <jdoc:include type="modules" name="footer" />
    <div class="ja-cert">
    <jdoc:include type="modules" name="syndicate" />
    </div>
    </div>
    </div>
    <!-- END: FOOTER -->

    </div>

    <jdoc:include type="modules" name="debug" />

    </body>

    </html>

    I hope it works, did not test it yet,but it should work.

    beyondsports Friend
    #265277

    i cut it out and moved it down and it is perfect…. is their anything i need to do to make sure the modules have a fixed height and arent uneven and choppy or is that not an issue…

    thanks so much for your help… when i put the site up tonight i will post it in the forum and ” pm ” you as well if ok for reviews…

    thanks
    trey

    Menalto Friend
    #265278

    They should get same height all of them…… Try it and let me know if they dont?

Viewing 3 posts - 16 through 18 (of 18 total)

This topic contains 18 replies, has 3 voices, and was last updated by  Menalto 16 years, 3 months ago.

We moved to new unified forum. Please post all new support queries in our New Forum