You can grant other user roles access to the settings by using a plugin such as User Role Editor or by using the following filter:
function sb_custom_capability( $cap ) {
return 'edit_posts';
}
add_filter( 'sbi_settings_pages_capability', 'sb_custom_capability', 10, 1 );