The reason why I didn't tell you to add this in PHP because that's harder and you mention that you are not good with coding. And it would not show in Theme Options anyways.
Just this:
<div class="large">
<a class="blue button" href="http://example.com">Call to Action 2</a>
</div>
after or before:
<?php $options = get_option('responsive_theme_options');
// First let's check if headline was set
if (!empty($options['cta_url']) && $options['cta_text']) {
echo '<a href="'.$options['cta_url'].'" class="blue button">';
echo $options['cta_text'];
echo '</a>';
// If not display dummy headline for preview purposes
} else {
echo '<a href="#nogo" class="blue button">';
echo __('Call to Action','responsive');
echo '</a>';
}
echo '<p></p>';
?>
</div><!-- end of .call-to-action -->
Will make a nice large call to action button like this:

No need to bother with PHPs if that's not easier for you.
Emil
Falkens wrote:I'm on it to be in here somewhere but I am not really sure the link works.
Because I got the code when the button is turned blue and I renamed it but when I added the link to the PHP page I wanted the button would link to it where there is no link.
Would you or someone else might show me how it should look like, I hope I learn along the way. Many thanks so far, Emil!
<?php $options = get_option('responsive_theme_options'); ?>
<?php if ($options['cta_button'] == 0): ?>
<div class="call-to-action">
<?php $options = get_option('responsive_theme_options');
// First let's check if headline was set
if (!empty($options['cta_url']) && $options['cta_text']) {
echo '<a href="'.$options['cta_url'].'" class="blue button">';
echo $options['cta_text'];
echo '</a>';
// If not display dummy headline for preview purposes
} else {
echo '<a href="#nogo" class="blue button">';
echo __('Call to Action','responsive');
echo '</a>';
}
?>
</div><!-- end of .call-to-action -->
Br Jonas