Hi Ashlilee,
Sorry about the delay here. Let’s begin by creating a new widget location.
In your function.php you probably already have a register_sidebar section started that you can add on to. The proper way to add a new widget area is by placing the following code in your function.php file.
if ( function_exists('register_sidebar') ) {
register_sidebar(array(
'name'=> 'Nav Widgets',
'id' => 'nav_widgets',
'before_widget' => '<li id="%1$s" class="widget %2$s">',
'after_widget' => '</li>',
'before_title' => '<h5 class="widgettitle">',
'after_title' => '</h5>',
));
}
If the function_exists(‘register_sidebar’) already exists in your function.php file you can simply add on to that by just placing the following code inside your IF clause.
register_sidebar(array(
'name'=> 'Nav Widgets',
'id' => 'nav_widgets',
'before_widget' => '<li id="%1$s" class="widget %2$s">',
'after_widget' => '</li>',
'before_title' => '<h5 class="widgettitle">',
'after_title' => '</h5>',
));
After you’ve added this code to function.php you should be able to see a new area in your Widgets backend where you drag your subscription widget into.
Lets start there and i’ll help you with the rest once this is successful.