- Posts: 26
- Thank you received: 0
User 9 right position
-
tulio
Inactive member -
Topic Author
- Member
-
Less
More
13 years 7 months ago - 13 years 7 months ago #12298
by tulio
User 9 right position was created by tulio
Hi there,
Why it is showing the user 9 module position in the left side. It should be in the right side. Can you give me a hand on how to fix this?
Please check www.sobef.com were the gt translate module is. Is in usr 9 position but it shoul be in the right side of the top menu.
Thanks,
Tulio
Why it is showing the user 9 module position in the left side. It should be in the right side. Can you give me a hand on how to fix this?
Please check www.sobef.com were the gt translate module is. Is in usr 9 position but it shoul be in the right side of the top menu.
Thanks,
Tulio
Last edit: 13 years 7 months ago by tulio.
Please Log in to join the conversation.
-
ivan.milic
Support Staff -
- Moderator
-
Less
More
- Posts: 14116
- Thank you received: 1639
13 years 7 months ago #12306
by ivan.milic
Replied by ivan.milic on topic Re: User 9 right position
First you need to make your logo container wider, because logo and (user3+user9) overlap, open template_css.php:
#logo {
height:<?php if (!$ishome) {echo "74px";} else echo "96px" ?>;
width:<?php if (!$ishome) {echo "141px";} else echo "159px" ?>;
}
currently 141px is for home page and 159px is for other pages. increase then by 100 so you would have:
...
width:<?php if (!$ishome) {echo "241px";} else echo "259px" ?>;
...
then you need to make (user3+user9) less wider so it fits page (template_css.php):
#topmenu_pad {
width:<?php echo $headerModulesWidth; ?>px;
}
modify like this:
#topmenu_pad {
width:<?php echo ($headerModulesWidth - 100); ?>px;
}
and last you need to swap user3 and user 9 module positions to be like you want, open index.php of template and find this:
<div class="user3"><jdoc:include type="modules" name="user3" style="none" /></div>
<div class="user9"><jdoc:include type="modules" name="user9" style="none" /></div>
swap them like this:
<div class="user9"><jdoc:include type="modules" name="user9" style="none" /></div>
<div class="user3"><jdoc:include type="modules" name="user3" style="none" /></div>
#logo {
height:<?php if (!$ishome) {echo "74px";} else echo "96px" ?>;
width:<?php if (!$ishome) {echo "141px";} else echo "159px" ?>;
}
currently 141px is for home page and 159px is for other pages. increase then by 100 so you would have:
...
width:<?php if (!$ishome) {echo "241px";} else echo "259px" ?>;
...
then you need to make (user3+user9) less wider so it fits page (template_css.php):
#topmenu_pad {
width:<?php echo $headerModulesWidth; ?>px;
}
modify like this:
#topmenu_pad {
width:<?php echo ($headerModulesWidth - 100); ?>px;
}
and last you need to swap user3 and user 9 module positions to be like you want, open index.php of template and find this:
<div class="user3"><jdoc:include type="modules" name="user3" style="none" /></div>
<div class="user9"><jdoc:include type="modules" name="user9" style="none" /></div>
swap them like this:
<div class="user9"><jdoc:include type="modules" name="user9" style="none" /></div>
<div class="user3"><jdoc:include type="modules" name="user3" style="none" /></div>
Please Log in to join the conversation.
Time to create page: 0.156 seconds