Hey bcworks, thanks for your reply!
I tried changing the title-getting part from
$title = get_option('odai_aw_title', 'About the Author');
to
$title = extract(array('odai_aw_title' => 'About the Author'));
I know that's wrong, because I'm getting a value of either 1 or 0 returned from it. I tried finding info about the extract() function on the Codex, but this was all I found.
Regarding the before title part, I just need to put these before and after the title, right?
<?php echo $before_title ?>
//code
<?php echo $after_title ?>
Again, thanks for your help.