Hi,
To fix the link to another category, go here: The Factory > Your Store > VIEWS > CATEGORY PAGE > Default and delete the "Category list" module from that page.
To fix the sidebar appearing at the bottom of the page, go here The Factory > Your Store > VIEWS > CATEGORY PAGE > Default > Text module > Theme settings (

) and replace all of the code in there with the following:
HTML Code:
<!-- Category Name -->
<h1>[category.name]</h1>
<!-- /Category Name -->
<p>
<?php if ($category->image) { ?>
<!-- Category Image -->
<img src="[category.image]" alt="[category.name]" style="float:left;margin:0 10px 10px 0;" />
<!-- /Category Image -->
<?php } elseif ($category->thumbnail) { ?>
<!-- Category Thumbnail -->
<img src="[category.thumbnail]" alt="[category.name]" style="float:left;margin:0 10px 10px 0;" />
<!-- /Category Thumbnail -->
<?php } ?>
<!-- Category Description -->
[category.description]
<!-- /Category Description -->
</p>
Eric