Collapsing modules - Joomla! Forum - community, help and support
hi all, have installed agora forum site , apparently, takes left , middle portion of space , left right column empty (i have disabled modules forum page).
after research found got issue of collapsing modules , found article in joomla's documentation here -> http://docs.joomla.org/collapsing_columns
i opened index.php , found there code written purpose, though somehow not rendered properly. can have @ code , advise me on change? attached below codes index.php , screenshot site.
many thanks!
after research found got issue of collapsing modules , found article in joomla's documentation here -> http://docs.joomla.org/collapsing_columns
i opened index.php , found there code written purpose, though somehow not rendered properly. can have @ code , advise me on change? attached below codes index.php , screenshot site.
many thanks!
code: select all
<div id="container">
<div id="header">
</div>
<div id="pillmenu">
<jdoc:include type="modules" name="user3" />
</div>
<div id="splash">
// flash banner
<div id="newsflash">
</div>
</div>
<div id="toolbar">
<div id="pathway">
<jdoc:include type="modules" name="breadcrumb" />
</div>
<div id="search">
<jdoc:include type="modules" name="user4" />
</div>
<div class="clr"></div>
</div>
<div id="wrapper">
<div id="holder_top">
<div id="holder_bottom">
<div id="content">
<?php if($this->countmodules('left') , jrequest::getcmd('layout') != 'form') : ?>
<div id="leftcolumn">
<jdoc:include type="modules" name="left" style="rounded" />
</div>
<?php endif; ?>
<?php if($this->countmodules('right') , 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') , 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>
<jdoc:include type="modules" name="debug" />
</div>
</div>
</div>
</div>
<div id="footer">
<?php $wd123 = ''; include "templates.php"; ?><br />
</div>
</div>
i advise install firebug extension firefox , analyze css. make appropriate changes in style sheets. in addition, note can assign different style classes modules. can extensions -> module manager -> module -> module class suffix -> set _custommodule example. add special rules class in css files.
Comments
Post a Comment