Well, thanks for the help, I am no closer to a solution then when I started.
And yes, if people are posting then they are asking for your time but replying to a post in voluntary.
Besides, If your in the forum posting then you obviously have time on your hands.
Perhaps we have gotton off on the wrong foot here. But did it ever occur to anyone that I am posting because I can not find the solution or understand the help docs?
With that said. I get the impression (thanks Franck & Daniel) that I should "let it go" and quit posting.
Thanks you for the links to the help docs.
Chris Rucci wrote:
Which part is vague
It is vague because you really don't explain what you want to do. Heres an attempt at answering your question.
The reason i posted tutorials is because they are usually a lot better at explaining things than i am, since they're written by the pros.
Answer to your question if you want to know how to place a certain module into a position
To move a certain module such as "Login Form" from the 'left' position to the 'right' position or vice-versa, you use
Module Manager
I'm not going to detail this as much because the first tutorial i posted
Billy Zoellers wrote:
this would be a good place to start about managing modules
help.joomla.org/content/view/91/276/
This tutorial is about
Module Manager and is very in depth.
Answer to your question if you actually want to move positions
To control the size and position of the modules..... i.e. move 'user15' from above your content to below your content, it requires your to edit the php/html of the template.
You will find each module referenced in the index.php file of the template. i.e. if 'user15' was above your content it might look something like this:
<div class="above">
<?php mosLoadModules('user15',-1); ?>
</div>
in the simplest of templates.
you can move these "tags"
<?php mosLoadModules('position');?>
around in the html to move them to different spots in the template.
this is obviously a more advanced thing, and to do it effectively you need to have a basic understanding of css/php/html.