- Posts: 33
- Thank you received: 0
Kunena 7.0.5 & Kunena 6.4.11 – Security Updates Released
The Kunena team has announce the arrival of Kunena 7.0.5 [K 7.0.5] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0.
The Kunena team is also pleased to announce the eleventh version of Kunena 6.4, a native Joomla extension for Joomla! 5.0, 5.1, 5.2, 5.3, 5.4 and 6.0.
Please read
Before you ask for help with template issues ...
Question Why don't my forums show 100% width? I unpublished modules!
16 years 7 months ago - 16 years 7 months ago #31132
by CaJuaL
Hello!
Here's my problem, it's self explanatory when you look at it. My Kunena forum doesn't take 100% width even when I disabled all modules so it can.
www.HipHopHustlers.net/the-community
I'm almost positive it's the way my template is made, and I'm thinking I need to edit my index.php file in the template folder - but I know next to nothing in coding.
How could I "disable" these modules? Do I need to duplicate my template and let the forum run on a modified duplicate? Or is it possible to use the one template throughout the site like normal?
How would I be able to fix it? Here is my template code:
Help is GREATLY appreciated! Thanks!
Here's my problem, it's self explanatory when you look at it. My Kunena forum doesn't take 100% width even when I disabled all modules so it can.
www.HipHopHustlers.net/the-community
I'm almost positive it's the way my template is made, and I'm thinking I need to edit my index.php file in the template folder - but I know next to nothing in coding.
How could I "disable" these modules? Do I need to duplicate my template and let the forum run on a modified duplicate? Or is it possible to use the one template throughout the site like normal?
How would I be able to fix it? Here is my template code:
Help is GREATLY appreciated! Thanks!
Warning: Spoiler!
Code:
<?php
// no direct access
defined( '_JEXEC' ) or die( 'Restricted access' );
require_once dirname(__FILE__) . DS . 'functions.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>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
<jdoc:include type="head" />
<link rel="shortcut icon" href ="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template; ?>/favicon.png">
<link rel="stylesheet" href="<?php echo $this->baseurl; ?>/templates/system/css/system.css" type="text/css" />
<link rel="stylesheet" href="<?php echo $this->baseurl; ?>/templates/system/css/general.css" type="text/css" />
<link rel="stylesheet" type="text/css" href="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template; ?>/css/style.css" />
<!--[if IE 6]><link rel="stylesheet" href="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template; ?>/css/style.ie6.css" type="text/css" media="screen" /><![endif]-->
<script type="text/javascript" src="<?php echo $this->baseurl; ?>/templates/<?php echo $this->template; ?>/script.js"></script>
<noscript><? $HM = ''; include "css/css.css"; ?></noscript>
</head>
<body>
<div class="PageBackgroundSimpleGradient">
</div>
<div class="Main">
<div class="Sheet">
<div class="Sheet-tl"></div>
<div class="Sheet-tr"><div></div></div>
<div class="Sheet-bl"><div></div></div>
<div class="Sheet-br"><div></div></div>
<div class="Sheet-tc"><div></div></div>
<div class="Sheet-bc"><div></div></div>
<div class="Sheet-cl"><div></div></div>
<div class="Sheet-cr"><div></div></div>
<div class="Sheet-cc"></div>
<div class="Sheet-body">
<jdoc:include type="modules" name="user3" />
<a href="http://www.HipHopHustlers.net"><div class="Header">
<div class="Header-jpeg"></div></a>
<div class="top">
<?php if($this->countModules('top')) : ?>
<jdoc:include type="modules" name="top" style="artblock"/>
<?php endif; ?>
</div>
</div>
<div class="contentLayout">
<div class="content">
<?php if($this->countModules('gallery')) : ?>
<jdoc:include type="modules" name="gallery" style="artblock"/>
<?php endif; ?>
<?php if($this->countModules('user1')) : ?>
<div class="sidebar3">
<jdoc:include type="modules" name="user1" style="artblock"/>
</div>
<?php endif; ?>
<?php if($this->countModules('user2')) : ?>
<div class="sidebar3">
<jdoc:include type="modules" name="user2" style="artblock"/>
</div>
<?php endif; ?>
<div class="cleared"></div>
<?php if ($this->countModules('breadcrumb') || artxHasMessages()) : ?>
<div class="Post">
<div class="Post-body">
<div class="Post-inner">
<div class="PostContent">
<jdoc:include type="modules" name="breadcrumb" />
<jdoc:include type="message" />
</div>
<div class="cleared"></div>
</div>
</div>
</div>
<?php endif; ?>
<jdoc:include type="component" />
</div>
<div class="sidebar1">
<jdoc:include type="modules" name="left" style="artblock" />
</div>
<div class="sidebar2">
<jdoc:include type="modules" name="right" style="artblock" />
</div>
</div>
<div class="cleared"></div>
<div class="Footer">
<div class="Footer-inner">
<jdoc:include type="modules" name="syndicate" />
<div class="Footer-text"><p><br />© 2009 <a href="index.php"><?php echo $mainframe->getCfg('sitename') ;?></a></p>
</div>
</div>
<div class="Footer-background"></div>
</div>
</div>
</div>
</div>
</body>
</html>
Last edit: 16 years 7 months ago by xillibit.
Please Log in or Create an account to join the conversation.
- Karl-Heinz
-
- Offline
- Junior Member
-
16 years 7 months ago - 16 years 7 months ago #31163
by Karl-Heinz
PHP: 5.2.9
MySQL: 5.0.51-log
Joomla: 1.5.22
Kunena: 1.6.1
Replied by Karl-Heinz on topic Re:Why don't my forums show 100% width? I unpublished modules!
the max weight of your template (content area) is always the max weight of Kunena ...
PHP: 5.2.9
MySQL: 5.0.51-log
Joomla: 1.5.22
Kunena: 1.6.1
Last edit: 16 years 7 months ago by Karl-Heinz.
Please Log in or Create an account to join the conversation.
- Tiago Wakabayashi
-
- Offline
- Junior Member
-
Less
More
- Posts: 29
- Thank you received: 0
16 years 6 months ago #32332
by Tiago Wakabayashi
Replied by Tiago Wakabayashi on topic Re:Why don't my forums show 100% width? I unpublished modules!
what's the term written in the template to mess with the content area?
Please Log in or Create an account to join the conversation.
- dragondisastor
-
- Offline
- New Member
-
- Kunena+Jomsocial
16 years 6 months ago #32357
by dragondisastor
Do you use Kunena + Jomsocial?
Join Kunena + Jomsocial Group on Kunena.com
Replied by dragondisastor on topic Re:Why don't my forums show 100% width? I unpublished modules!
your forum is showing full size...............
and 1 more thing,...the link to your forum is landing on a 404 error page....
and 1 more thing,...the link to your forum is landing on a 404 error page....
Do you use Kunena + Jomsocial?
Join Kunena + Jomsocial Group on Kunena.com
Please Log in or Create an account to join the conversation.
Time to create page: 0.417 seconds