Hello,
I mostly likely missed something out somewhere 
First, I noticed the bars for separation were missing from the top menu as well as the red arrow icons on the right. So I guess there's problems to start with(after following the top 4 tutorials). I followed the tutorials closely and I don't think I made a mistake. So if someone could shed some light on this that would be awesome.
Might be my fuzzy eyes but I do not see this change. I can see that the separator has not moved, possibly just a border-right to border-left that needs to be changed, a link would make that quicker 
Anyways, this is the specific question for changing module positions.
<?php if(mosCountModules('right')) : ?>
<td class="right">
<div class="padding">
<?php mosLoadModules('right', -2); ?>
</div>
</td>
<?php endif; ?>
This is the piece of php code in question... now if i leave the "right" the way it is and move the piece of code like how its suggested in the tutorial the switch from right to left is successful but leaving "right" would be confusing in the external css. So I would change everything from "right" to "left", specifically td.right to td.left in the css and right to left in the above snippet to this:
<?php if(mosCountModules('left')) : ?>
<td class="left">
<div class="padding">
<?php mosLoadModules('left', -2); ?>
</div>
</td>
<?php endif; ?>
The results are shown in example2.rokwebify (picture). The switch is made but new (modules?) appear... so I'm confused what's going on?
The template before had no left module position. Therefore, any module that has been assigned to the left position will not show in RokWebify. However, when you switched right to left. The left modules suddenly had a place to go.
Hope that helps