- Posts: 66
- Thank you received: 0
Scroller above Designation?
-
dreamdest
Inactive member -
Topic Author
- Member
-
Less
More
10 years 5 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 -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
10 years 5 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.
-
dreamdest
Inactive member -
Topic Author
- Member
-
Less
More
- Posts: 66
- Thank you received: 0
10 years 5 months ago #42710
by dreamdest
Replied by dreamdest on topic Scroller above Designation?
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
10 years 5 months ago - 10 years 5 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: 10 years 5 months ago by ivan.milic.
Please Log in to join the conversation.
Time to create page: 0.154 seconds