http://www.youtube.com/watch?v=WAAZKmAm3ag&feature=player_embedded
To learn more about Artisteer check out this link: joomlatemplatecreator.com This video is designed to show a quick way to add a module position at the top of an Artisteer Joomla rendered template. This allows one to alter the header of their Joomla template/layout with modules (Custom HTML modules) versus having to make html/css changes. Of course there are several ways this can be done, however this is a relatively quick fix that I’d thought I share.
=================================
Updated Tips for Artisteer new version(1stopwebsite.com.au):
1. Make Theme without Heading.
2. Save as folder
3. open"templatedetails.xml", add a "logo" position after "user5"
<position>user1</position>
<position>user2</position>
<position>user3</position>
<position>user4</position>
<position>user5</position>
<position>logo</position>
</positions>
4.open index.php, add "<?php echo $view->position('logo'); ?> " after <div id="art-main">
<body class="<?php echo $view->bodyClass(); ?>">
<div id="art-main">
<?php echo $view->position('logo'); ?>
<div class="cleared reset-box"></div>
5.zip the folder
6.upload theme
7.module management-add module"cust-HTML", set position to "logo"
=============copy from the youtube video========================