-
AuthorPosts
-
asifak Friend
asifak
- Join date:
- November 2010
- Posts:
- 172
- Downloads:
- 1
- Uploads:
- 19
- Thanks:
- 46
- Thanked:
- 2 times in 1 posts
September 13, 2011 at 3:15 pm #168506I am using JA Telline IIIV2.
How a Banner can be added on top of Top Bar ?TomC ModeratorTomC
- Join date:
- October 2014
- Posts:
- 14077
- Downloads:
- 58
- Uploads:
- 137
- Thanks:
- 948
- Thanked:
- 3155 times in 2495 posts
September 13, 2011 at 3:36 pm #412404<em>@asifak 267384 wrote:</em><blockquote>I am using JA Telline IIIV2.
How a Banner can be added on top of Top Bar ?</blockquote>Simplest way would be to assign your banner to the “search” position – and then designate the stacking order accordingly.
asifak Friendasifak
- Join date:
- November 2010
- Posts:
- 172
- Downloads:
- 1
- Uploads:
- 19
- Thanks:
- 46
- Thanked:
- 2 times in 1 posts
September 14, 2011 at 6:13 am #412545I donot want to disturb Search, Header and Top Bar itself, and infact would like a banner to be placed on top of the whole template (I know this statement looks funny). I know perhaps this possible as I noticed one such example when i opened my website in Internet Explorer 6 then a Joomla warning message appeared stating that IE7 should be used. This warning message was more and less like a Banner.
khoand Friendkhoand
- Join date:
- February 2011
- Posts:
- 4500
- Downloads:
- 0
- Uploads:
- 179
- Thanks:
- 169
- Thanked:
- 1166 times in 1060 posts
September 14, 2011 at 6:25 am #412552Hi,
You login backend > Extensions > Template Manager > JA_Teline_III_v2 > LAYOUTS. Edit Default. You replace this code
<blocks name="top" style="xhtml">
<block name="header" type="header"></block>
<block name="mainnav" type="mainnav" ></block>
<block name="cpanel" type="usertools/cpanel"></block>
<block name="navhelper" type="navhelper"></block>
<block name="topsl" type="spotlight">user1,user2,user3,user4,user5</block>
</blocks>
with
<blocks name="top" style="xhtml">
<block name="banner" type="modules">banner</block> < add this line
<block name="header" type="header"></block>
<block name="mainnav" type="mainnav" ></block>
<block name="cpanel" type="usertools/cpanel"></block>
<block name="navhelper" type="navhelper"></block>
<block name="topsl" type="spotlight">user1,user2,user3,user4,user5</block>
</blocks>
– You set position of module is banner.1 user says Thank You to khoand for this useful post
TomC ModeratorTomC
- Join date:
- October 2014
- Posts:
- 14077
- Downloads:
- 58
- Uploads:
- 137
- Thanks:
- 948
- Thanked:
- 3155 times in 2495 posts
September 14, 2011 at 3:38 pm #412685September 16, 2011 at 1:22 pm #413088i am using this theme on joomla 1.7
but i am unable to add the login to the top bar along the date and last update.(as shown on the demo)any idea?
khoand Friendkhoand
- Join date:
- February 2011
- Posts:
- 4500
- Downloads:
- 0
- Uploads:
- 179
- Thanks:
- 169
- Thanked:
- 1166 times in 1060 posts
September 16, 2011 at 5:42 pm #413136<em>@taus 268232 wrote:</em><blockquote>i am using this theme on joomla 1.7
but i am unable to add the login to the top bar along the date and last update.(as shown on the demo)any idea?</blockquote>
Could you give me a link to your website?September 16, 2011 at 5:45 pm #413137Hi khoand,
it is not fully developed.looks very plain.
but you can take a look at it.
http://www.taustracker.comkhoand Friendkhoand
- Join date:
- February 2011
- Posts:
- 4500
- Downloads:
- 0
- Uploads:
- 179
- Thanks:
- 169
- Thanked:
- 1166 times in 1060 posts
September 17, 2011 at 8:04 am #413212I can’t access your website because I don’t have login information. Could you give it to me?
September 17, 2011 at 8:25 am #413220sent you a pm
khoand Friendkhoand
- Join date:
- February 2011
- Posts:
- 4500
- Downloads:
- 0
- Uploads:
- 179
- Thanks:
- 169
- Thanked:
- 1166 times in 1060 posts
September 17, 2011 at 8:46 am #413224This site is down for maintenance.
Please check back again soon.
🙁September 17, 2011 at 8:49 am #413226should be ok now.its online now..
khoand Friendkhoand
- Join date:
- February 2011
- Posts:
- 4500
- Downloads:
- 0
- Uploads:
- 179
- Thanks:
- 169
- Thanked:
- 1166 times in 1060 posts
September 17, 2011 at 10:31 am #413246You replace your /templates/ja_teline_iii/blocks/header.php file with
<?php
/**
* ------------------------------------------------------------------------
* JA Teline III Template for Joomla 1.7
* ------------------------------------------------------------------------
* Copyright (C) 2004-2011 J.O.O.M Solutions Co., Ltd. All Rights Reserved.
* @license - Copyrighted Commercial Software
* Author: J.O.O.M Solutions Co., Ltd
* Websites: http://www.joomlart.com - http://www.joomlancers.com
* This file may not be redistributed in whole or significant part.
* ------------------------------------------------------------------------
*/
?>
<?php $this->genBlockBegin ($block) ?>
<div class="inner clearfix">
<?php
$app = & JFactory::getApplication();
$siteName = $app->getCfg('sitename');
if ($this->getParam('logoType', 'image')=='image'): ?>
<h1 class="logo">
<a href="index.php" title="<?php echo $siteName; ?>"><span><?php echo $siteName; ?></span></a>
</h1>
<?php else:
$logoText = (trim($this->getParam('logoText'))=='') ? $siteName : JText::_(trim($this->getParam('logoText')));
$sloganText = JText::_(trim($this->getParam('sloganText'))); ?>
<div class="logo-text">
<h1><a href="index.php" title="<?php echo $siteName; ?>"><span><?php echo $logoText; ?></span></a></h1>
<p class="site-slogan"><?php echo $sloganText;?></p>
</div>
<?php endif; ?><?php if($this->countModules('search')) : ?>
<div id="ja-search">
<jdoc:include type="modules" name="search" />
</div>
<?php endif; ?>
</div>
<!-- HEADLINES & Top megamenu -->
<div class="ja-topbar clearfix"><p class="ja-day">
<?php
echo "<span class="day">".JHTML::_('date', 'now', 'l')."</span>";
echo "<span class="date">, ".JHTML::_('date', 'now', 'M ')." ".JHTML::_('date', 'now', 'd').JHTML::_('date', 'now', 'S')."</span>";
?>
</p><p class="ja-updatetime"><span><?php echo JText::_('Last update')?></span><em><?php echo T3Common::getLastUpdate(); ?></em></p>
<?php if($this->countModules('headlines')) : ?>
<jdoc:include type="modules" name="headlines" />
<?php endif; ?><?php if($this->countModules('syndicate')) : ?>
<div class="ja-syndicate">
<jdoc:include type="modules" name="syndicate" />
</div>
<?php endif; ?><?php $this->showBlock('topmega') ?>
</div>
<!-- END HEADLINES --><?php $this->genBlockEnd ($block) ?>
1 user says Thank You to khoand for this useful post
September 18, 2011 at 4:40 pm #413425thank you so much for the reply.just tested it and it looks fine.:)
one more question.
im sure the same way i need to add the tabs so i could have different modules like login and twitter.
but how could be this done?
there is not tab module for this template on joomla 1.7?khoand Friendkhoand
- Join date:
- February 2011
- Posts:
- 4500
- Downloads:
- 0
- Uploads:
- 179
- Thanks:
- 169
- Thanked:
- 1166 times in 1060 posts
September 18, 2011 at 6:57 pm #413467To show module on topmega position, you create new menu item in topmega menu, its type is External URL. At Parameters (JA Extended) section, set Submenu Content is Modules, select module you want to show at Select Modules
AuthorPostsViewing 15 posts - 1 through 15 (of 15 total)This topic contains 15 replies, has 4 voices, and was last updated by khoand 13 years, 2 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum
JA Telline IIIV2: How to add Banner on top of Top Bar
Viewing 15 posts - 1 through 15 (of 15 total)