Hi Alice,
Let me help you for real, instead of just vaguely commenting your question. 😉
To add a module position on top of the main area is actually VERY easy. You can do it. Do the following:
Open the file index.php from the template. It’s in the folder of the template.
Scroll down to this part:
<!-- BEGIN: CONTENT -->
<div id="ja-content">
<div class="innerpad">
Then add directly underneath:
<?php if ( mosCountModules('topmain') ) { ?>
<div id="ja-topmain">
<?php echo mosLoadModules ( 'topmain',-1 ); ?>
</div>
<?php } ?>
Save the file and go to the administrator side –> template manager –> module positions.
Add another position named: topmain.
Go to modules and add another module with some text and place it on topmain. It will be in the list. And voila! It’s there!
Good luck!
Tom