hi
i want to add a new module position in template near login position
how can i do?
Don Lee wrote:Hi,
Please check this userguide http://www.gavick.com/documentation/joo ... -position/
Consult this topic as well https://www.gavick.com/forums/131/is-it ... 16605.html
Cheers,
Don Lee wrote:So I can't because I need to test also, once you put it online just let me know then I will help right away.
Cheers,
teitbite wrote:Hi
Please send this ftp anf joomla panel access to my mail. I'll help You with that.
<?php if( $this->modules('mytop') ): ?>
<div id="mytop">
<jdoc:include type="modules" name="mytop" />
</div>
<?php endif; ?>
teitbite wrote:Hi
I can see You've done it already. This is a good code:
- Code: Select all
<?php if( $this->modules('mytop') ): ?>
<div id="mytop">
<jdoc:include type="modules" name="mytop" />
</div>
<?php endif; ?>
Now please just publish Your module in this new "mytop" position and show me Your site than so I'll fix the css style to make it display in a right place.
teitbite wrote:Hi
I can see You've done it already. This is a good code:
- Code: Select all
<?php if( $this->modules('mytop') ): ?>
<div id="mytop">
<jdoc:include type="modules" name="mytop" />
</div>
<?php endif; ?>
Now please just publish Your module in this new "mytop" position and show me Your site than so I'll fix the css style to make it display in a right place.
teitbite wrote:Hi
What position did You published this moduel in ? I cannot log into joomla panel. Access You've send me is not working.
Greets
#mytop {
position: absolute;
width: 250px;
right: 100px;
top: 50px;
}
teitbite wrote:Hi
Ok. It was the wrong function name used. Now it's ok. To make it display in desired place place add this code at the end of template.css file:
- Code: Select all
#mytop {
position: absolute;
width: 250px;
right: 100px;
top: 50px;
}
this numbers may not be accurate, so You will need to play with them for a while to set in a right place.
teitbite wrote:Hi
Position works, but I do not see this css I've asked You to copy to template.css file. Without it site may looks broken on some browsers.