fairyjo the bottom spotlight positions show above the component, how do I move them below the component?
These 3 modules are using the JA ACM Spotlight Style-1 settings - these 2 ja acm modules are published in sections position which is above main content -
If you want to move them below main content then edit this file /templates/ja_alumni/tpls/default.php
and change block order from:
<?php $this->loadBlock('topbar') ?>
<?php $this->loadBlock('header') ?>
<?php $this->loadBlock('slideshow') ?>
<?php $this->loadBlock('masthead') ?>
<?php $this->loadBlock('sections') ?>
<?php $this->loadBlock('mainbody') ?>
<?php $this->loadBlock('ja-map') ?>
<?php $this->loadBlock('navhelper') ?>
<?php $this->loadBlock('footer') ?>
TO :
<?php $this->loadBlock('topbar') ?>
<?php $this->loadBlock('header') ?>
<?php $this->loadBlock('slideshow') ?>
<?php $this->loadBlock('masthead') ?>
<?php $this->loadBlock('mainbody') ?>
<?php $this->loadBlock('sections') ?>
<?php $this->loadBlock('ja-map') ?>
<?php $this->loadBlock('navhelper') ?>
<?php $this->loadBlock('footer') ?>
As you can see i moved block sections below mainbody block
fairyjo Could you tell me what you did to add the new positions? I'm very curious to know how this works.
As explained above these are not properly new positions but they are builded using the ja acm module spotlight that add new virtual blocks in sections position.
If you want to learn how to add new positions then take a look at the T3 - Framework documentation HERE
fairyjo Could I install the quickstart in a subfolder of my personal hosting?
Yes you can but would be preferable to use a different database then the one used for your live website -, that's why it is better to test everything first on local xampp and then when completed move it to your host -
fairyjo Do you mean that the quickstart has another layout than the default available in the template only package?
It has not only different layout but also other settings , it is an exact replica of the website as seen on our demo .
Regards