- Posts: 66
- Thank you received: 0
Scroller above Designation?
11 years 2 months ago #42700
by dreamdest
Scroller above Designation? was created by dreamdest
Is there any way to make the scroller appear above the designation?
Thanks again!
Thanks again!
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Offline
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
11 years 2 months ago #42705
by ivan.milic
Replied by ivan.milic on topic Scroller above Designation?
Did you try too swap their positions
Please Log in to join the conversation.
11 years 2 months ago #42710
by dreamdest
Replied by dreamdest on topic Scroller above Designation?
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Offline
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
11 years 2 months ago - 11 years 2 months ago #42717
by ivan.milic
Replied by ivan.milic on topic Scroller above Designation?
I meant module position scroller is in 'scroller' postion, and designation is in 'user1' postion
EDIT:
Just tough again on this maybe easiest solution is to edit index.php
just swap in code:
to:
EDIT:
Just tough again on this maybe easiest solution is to edit index.php
just swap in code:
Code:
<?php if ($showuser1) { ?>
<div class="gallery">
<jdoc:include type="modules" name="user1" style="xhtml" />
</div>
<div class="clr"></div>
<?php } ?>
<?php if ($showscroller) { ?>
<div class="scroller_module">
<jdoc:include type="modules" name="scroller" style="none" />
</div>
<div class="clr"></div>
<?php } ?>
to:
Code:
<?php if ($showscroller) { ?>
<div class="scroller_module">
<jdoc:include type="modules" name="scroller" style="none" />
</div>
<div class="clr"></div>
<?php } ?>
<?php if ($showuser1) { ?>
<div class="gallery">
<jdoc:include type="modules" name="user1" style="xhtml" />
</div>
<div class="clr"></div>
<?php } ?>
Last edit: 11 years 2 months ago by ivan.milic.
Please Log in to join the conversation.
Time to create page: 0.331 seconds