Viewing 15 posts - 1 through 15 (of 18 total)
  • Author
    Posts
  • beyondsports Friend
    #132140

    right now mod 8, 9 are great… how would i add say 3 more mod’s in 1 row across the bottom…how would i go about adding this..
    thanks
    trey

    i am assuming i would also have to make adjustments to both the height in the left and rigt columns…

    ryanlama Friend
    #265129

    3 files or places to add or edits if i remember it correctly
    index.php
    css
    and the xml

    and you should be fine.

    just try copying and pasting something that is already there by renaming it to test.

    beyondsports Friend
    #265157

    someone please help me…. this is what ive done so far… went into the index and added modules 10,11,12 and also added the mod’s in the template xml as well and it does show up in the control panel—great!!! i published mod’s in those positions and it does pull up when i preview it….

    this is a local install…

    i would like it to span the entire width — as it stands right now the left and right column extend top to bottom…. what do i need to edit in the css file; so, mods: 8,9,10,11,12 extend in 1 row left to right across the width of the site which is believe is 970px…

    thanks’
    trey

    beyondsports Friend
    #265188

    please i need a solution… i just dont know where to look in the css file to fix this….

    thanks again
    trey

    Menalto Friend
    #265211

    Can you post the code you have added to the index.php file here?

    beyondsports Friend
    #265245

    here ya go… i just went in and cut and paste the code for mod’s 8 and 9…. along with adding the mod’s the spotlight array….. i just need the bottom to copletely span the width of the website… the left and right columns extend from top to bottom— where can i adjust that at?

    </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>

    beyondsports Friend
    #265246

    that is what i am trying to accomplish with the modules spanning the width of the website along the bottom… i hope this is clearer…
    trey

    beyondsports Friend
    #265260

    i added a line to the template.css file: here is what i changed in the css file…

    line 1026—- the width to 970px… when i added this it worked and extended the modules in 1 row across the width of the website… had one issue though -the modules had jagged positioning– ie left and right were lower than the middle 3 mod’s which i added… i know this is probably a workaround; but, i changed the padding on the left and right div’s below knocking them down to ” 0 “…. i am pretty sure i need to add some code for the 3 mod’s in the middle– so this is uniform and in compliance – right? and the height of course need’s to be fixed; so, it doesnt expand in line with the module with the most content… please help me–i am getting there one step at a time…

    /* Bot spotlight */
    #ja-botsl {
    width: 970px;
    padding: 20px 0 20px;
    }

    #ja-botsl .ja-box-left div.moduletable {
    margin: 0px 6px 0 0;
    }

    #ja-botsl .ja-box-right div.moduletable {
    margin: 0px 0 0 6px;
    }

    #ja-botsl ul, #ja-botsl ol {
    margin: 0;
    padding: 0;
    }

    #ja-botsl ol li {
    margin: 0 0 0 20px;
    padding: 0;
    }

    #ja-botsl ul li {
    margin: 0;
    padding: 0 0 0 15px;
    background: url(../images/bullet.gif) no-repeat 5px 7px;
    }

    once this is done i still need to adjust the height of the left and right column; so, it rest’s on top of the ” ja bots ” — row of mod’s i have created….

    thanks
    trey

    beyondsports Friend
    #265263

    update…. after much tweaking the css i have got it just about configured out… to add a row of 5 modules spanning the bottom of the website…. i will post all the edit’s i have done to accomplish this later….

    i ended up going line by line in the css in comparison to the ja edinite template…. trial and error as well…

    stay tuned…
    trey

    Menalto Friend
    #265265

    You should take this piece of code:

    <?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 } ?>

    Cut and paste it above this here:

    <!-- BEGIN: FOOTER -->
    <div id="ja-footerwrap" class="clearfix">

    Then the modules will be the same width as the template.
    And add this in the template.css file:

    #ja-botsl {
    width: 970px;
    margin: 0 auto;
    clear: both;
    }
    .auto #ja-botsl {
    width: 98%;
    }

    beyondsports Friend
    #265268

    i am pretty sure i didnt solve it… i also added a white background to :

    /* Bot spotlight */
    #ja-botsl {
    width: 970px;
    background-color:#FFFFFF;
    padding: 20px 0 20px;
    }

    i think i just covered up the repeating left and right columns… can someone please explain exactly what i need to change…i hate workarounds…

    i also went back and edited this css code on line: 734 and assigned a fixed height to the modsmessed with the padding…

    /*botsl module */
    #ja-botsl div.moduletable {
    border: 1px solid #CCCCCC;
    padding: 0 4px 4px;
    background: #F7F7F7;
    height: 160px;
    }

    #ja-botsl div.moduletable h3 {
    border-bottom: 1px solid #DDDDDD;
    margin: 0 4px 4px;
    padding: 4px 4px;
    color: #006699;
    background: #FFFFFF;
    }

    i added mod’s with specific pix the size and so far it works… will wait for an answer…

    beyondsports Friend
    #265269

    menalto i edited the css… thanks

    can you give me a full copy and past of the index file; so, i know exactly where i need to place the new code… i dont know if i am supposed to delete certains line’s of code…

    thanks
    trey

    Menalto Friend
    #265270

    Read my last post on page one of this post.

    Menalto Friend
    #265271

    In the index.php file you have this code here:

    <?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 } ?>

    Cut it out, no more than what i have posted above, and no less.
    Scroll down to you find this here:

    <!-- BEGIN: FOOTER -->
    <div id="ja-footerwrap" class="clearfix">

    And paste this code above it:

    <?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 } ?>

    So it will look like this here:

    <?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">

    beyondsports Friend
    #265274

    if i just cut and paste from footer up to the array i delete left and right column…. here is my index file if you can show me exactly what i need to replace i would appreciate it…

    <?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
    $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 } ?>

    <?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>

    <!– 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>

Viewing 15 posts - 1 through 15 (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