You need to do this:
<?php
$fboxclm = array("1");
foreach ($fboxclm as $fboxn) { ?>
<span class="featured-box">
<a href="<?php bloginfo('url'); ?>/your_url/" title="<?php echo of_get_option('featured-title' . $fboxn , ''); ?>">
<img class="box-image" src="<?php echo of_get_option('featured-image' . $fboxn, get_template_directory_uri() . '/images/featured-image' . $fboxn . '.jpg') ?>"/>
<h3><?php echo of_get_option('featured-title' . $fboxn , ''); ?></h3>
</a>
<div class="content-ver-sep"></div>
<br />
<p><?php echo of_get_option('featured-description' . $fboxn , ''); ?></p>
</span>
<?php } ?>
<?php
$fboxclm = array("2");
foreach ($fboxclm as $fboxn) { ?>
<span class="featured-box">
<a href="<?php bloginfo('url'); ?>/your_url/" title="<?php echo of_get_option('featured-title' . $fboxn , ''); ?>">
<img class="box-image" src="<?php echo of_get_option('featured-image' . $fboxn, get_template_directory_uri() . '/images/featured-image' . $fboxn . '.jpg') ?>"/>
<h3><?php echo of_get_option('featured-title' . $fboxn , ''); ?></h3>
</a>
<div class="content-ver-sep"></div>
<br />
<p><?php echo of_get_option('featured-description' . $fboxn , ''); ?></p>
</span>
<?php } ?>
<?php
$fboxclm = array("3");
foreach ($fboxclm as $fboxn) { ?>
<span class="featured-box">
<a href="<?php bloginfo('url'); ?>/your_url/" title="<?php echo of_get_option('featured-title' . $fboxn , ''); ?>">
<img class="box-image" src="<?php echo of_get_option('featured-image' . $fboxn, get_template_directory_uri() . '/images/featured-image' . $fboxn . '.jpg') ?>"/>
<h3><?php echo of_get_option('featured-title' . $fboxn , ''); ?></h3>
</a>
<div class="content-ver-sep"></div>
<br />
<p><?php echo of_get_option('featured-description' . $fboxn , ''); ?></p>
</span>
<?php } ?>
The header of the file goes unchanged.