If you want extra paragraph in contentbox, duplicate this line in php file home:
<p><?php echo of_get_option('sc_homecontent1') ?></p>
And rename it (for example):
<p><?php echo of_get_option('sc_homecontent5') ?></p>
Open file homepage (admin > content) and duplicate this:
$options[] = array( "name" => "Content Box 1 Text",
"id" => $shortname."_homecontent1",
"std" => "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore.",
"type" => "textarea");
And rename it (for example):
$options[] = array( "name" => "Content Box extra Text",
"id" => $shortname."_homecontent5",
"std" => "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore.",
"type" => "textarea");
(Note: repeat this for each box en give each new codeblock own number, for example 5,6,7,8)
Guido