Forums

Products - English => Templates => Topic started by: I S on October 08, 2007, 06:02:12 PM



Title: Light Skills
Post by: I S on October 08, 2007, 06:02:12 PM
I recently joined this template club and downloaded the Light Skills template (witch is very clean and nice btw). I only think there's very little documentation included in the package. Especially because it's a very hard template to integrate modules. A simple text module or header rotator above the content just falls out of place or doesn't appear at all. Is there a solution to this?


Title: Re : Light Skills
Post by: Nicolas on October 09, 2007, 09:01:31 AM
Hi,

I'm not sure to understand, could you give me and exemple or a screenshot of your project ?

 ;)


Title: Re: Light Skills
Post by: I S on October 10, 2007, 04:56:47 PM
(http://www.s-burning.com/img/Project1 (Medium).JPG)


(http://www.s-burning.com/img/Project2 (Medium).JPG)

As you can see on screen 1 (Firefox) and 2 (IE) the AJAX Header Rotator is all over the place.
I use module position "top"

I also want to place a module at the position of the blue box in screen 1 but every module i try to place there just doesn't appear


Title: Re : Light Skills
Post by: Nicolas on October 12, 2007, 01:49:23 PM
Hi,

the "top" position is only defined to display a menu or a search engine, like your screenshot.
Between the pathway and the begin of content there is any position defined to display your module.

To place your banner module, create a new unused position on index.php file. Localize a comment named "content" at line 160
Code:
<!--begin:content-->
<div id="content">
<?php mosMainBody(); ?>
</div>
<!--end:content-->
And write this :
Code:
<!--begin:content-->
<div id="content">
      <?php mosLoadModules('user5', -3); ?>
      <?php mosMainBody(); ?>
</div>
<!--end:content-->

After your header rotator, place in "user5" must appear correctly.

 ;)


Title: Re: Light Skills
Post by: I S on October 12, 2007, 03:15:09 PM
Thanks! It works fine now ;D