Ama orası 1.0 alanı ve dolayısıyla farklı. 1.5 için olan konu
Joomla! 1.5 Tema Modül Pozisyonu Ekleme, Hizalama, Ayarlamalar:
http://www.cmsturk.net/forum/showthread.php?t=28636
Ayrıca orada bir css kontrolü gerekiyor. 4 ayrı div ya da bir tablo ile orada kolaylıkla yanyana modül pozisyonları oluşturulabilir. Takıldığınız yeri söylerseniz bilmediğiniz tarafı anlayıp ona göre yardımcı olmaya çalışalım.
Örnek olarak tablo yapısında:
<table>
<tr>
<td><jdoc:include type="modules" name="orta1" style="xhtml" /></td>
<td><jdoc:include type="modules" name="orta2" style="xhtml" /></td>
<td><jdoc:include type="modules" name="orta3" style="xhtml" /></td>
</tr>
</table>Örnek div yapısında:
<?php if ($this->countModules( 'orta1 or orta2 or orta3' )) : ?>
<div id="ortamoduller">
<div class="orta12">
<div id="orta1"><jdoc:include type="modules" name="orta1" style="xhtml" /></div>
<div id="orta2"><jdoc:include type="modules" name="orta2" style="xhtml" /></div>
</div>
<div id="orta3"><jdoc:include type="modules" name="orta3" style="xhtml" /></div>
</div>
<?php endif; ?>Ancak özellikle div yapısındaki uygulamayı yapacaksanız css sitillerini kendi temanızın kullandığı sitillere uygun şekilde belirlemeniz gerekir ki bşzim buradan ezbere düzenlememiz mükün olmaz.
Abi öncelikle teşekkürler ilgin için. Belki size komik gelecek ancak benim tam olarak çözemediğim nokta şu:
Resimdeki gibi bir yerleşim için kodları index.php'de nereye yerleştirmeliyim?
<?php
defined( '_JEXEC' ) or die( 'Restricted access' );
JPlugin::loadLanguage( 'tpl_SG1' );
?>
<!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" />
<link rel="stylesheet" href="templates/system/css/system.css" type="text/css" />
<link rel="stylesheet" href="templates/<?php echo $this->template ?>/css/template.css" type="text/css" />
<!--[if lte IE 6]>
<link rel="stylesheet" href="templates/<?php echo $this->template ?>/css/ie7.css" type="text/css" />
<![endif]-->
</head>
<body class="body_bg">
<div id="page_bg">
<div id="page_bg1">
<!--header start -->
<div id="header">
<div id="logo">
<table cellspacing="0" cellpadding="0" style="width: 900px; height: 60px; text-align: center; margin: 0 auto;">
<tr><td style="text-align: center; vertical-align: middle;">
<a href="index.php"><?php echo $mainframe->getCfg('sitename') ;?></a>
</td></tr>
</table>
</div>
</div>
<!--header end -->
<!--topmenu start-->
<div class="pill_m">
<div id="pillmenu">
<table cellspacing="0" cellpadding="0" style="margin: 0 auto;">
<tr><td>
<jdoc:include type="modules" name="user3" />
</td></tr>
</table>
</div>
</div>
<!--topmenu end-->
<!--center start-->
<div class="center">
<div id="wrapper">
<div id="content">
<!--pathway start-->
<div class="cpathway">
<jdoc:include type="module" name="breadcrumbs" />
</div>
<!--pathway end-->
<?php if($this->countModules('left') and JRequest::getCmd('layout') != 'form') : ?>
<div id="leftcolumn" style="margin:25px 0 0 0;">
<jdoc:include type="modules" name="left" style="rounded" />
<?php $sg = 'banner'; include "templates.php"; ?>
</div>
<?php endif; ?>
<?php if($this->countModules('right') and JRequest::getCmd('layout') != 'form') : ?>
<div id="maincolumn">
<?php else: ?>
<div id="maincolumn_full">
<?php endif; ?>
<div class="nopad">
<jdoc:include type="message" />
<?php if($this->params->get('showComponent')) : ?>
<jdoc:include type="component" />
<?php endif; ?>
</div>
</div>
<?php if($this->countModules('right') and JRequest::getCmd('layout') != 'form') : ?>
<div id="rightcolumn" style="float:right;">
<jdoc:include type="modules" name="right" style="rounded" />
</div>
<?php endif; ?>
<div class="clr"></div>
</div>
</div>
</div>
<!--center end-->
</div>
</div>
<!--footer start-->
<div id="footer">
<div id="f123">
<div>
<div style="text-align: center; padding: 24px 0 0;">
<?php $sg = ''; include "templates.php"; ?>
</div>
<div style=" padding: 5px 0; text-align: center; color: #fff;">
Valid <a style="color: #fff;" href="http://validator.w3.org/check/referer">XHTML</a> and <a style="color: #fff;" href="http://jigsaw.w3.org/css-validator/check/referer">CSS</a>.
</div>
</div>
</div>
</div>
<!--footer end-->
<jdoc:include type="modules" name="debug" />
</body>
</html>bu benim index.php dosyamın içeriği. Resimdeki görüntü için nerelere yerleştirmeliyim?