The easiest way would be this:
Enter the following into your forum block
Code:
<html>
<body>
<center>
<table>
To see exactly what the benefits you will recieve by becoming a VIP club member, please click the link below.<br /><br /></table>
<a href="your link path"><img src="your image path"></a>
</center>
</body>
</html>
However <center> html has been depreciated and should be avoided so you could create a peice of css and div tag either place it in your additional css template and call to it or directly write it into your forum block like this.
Code:
<html>
<style type="text/css">
img.post {
display:block;
margin-left:auto;
margin-right:auto;
}
#post {
text-align: center;
}
</style>
<body>
<div id="post">To see exactly what the benefits......</div>
<br />
<br />
<a href="your link path"><img class="post" src="your image path"></a>
</body>
</html>