Thanks for the reply Curtiss.
I found the problem and fixed it. I was a shopperpress theme bug.
I was a closing </div> issue as i first suggested.
Here is the fix for anybody using shopperpress 7.0.9.5
In /system_customdesign.php ===PREMIUM PRESS REGISTER WIDGETS===
Line 2551, we have a double closing </div>
Like this: 'after_widget' => '</div></div>',
We remove one of the </div> from this line and add it to line 2553
Like this: 'after_title' => '</h2><div class="itemboxinner greybg widget"></div>',
So now our code should look like this:
if ( function_exists('register_sidebar') ){
register_sidebar(array('name'=>'Home Page Widget Box',
'before_widget' => '<div class="itembox">',
'after_widget' => '</div>',
'before_title' => '<h2 id="widget-box-id">',
'after_title' => '</h2><div class="itemboxinner greybg widget"></div>',
'description' => 'This is an empty widget box, its used only with the theme options found under "Display Settings" -> "Home Page" ',
'id' => 'sidebar-0',
Is anybody else is experiencing this issue, just apply this fix to all your sidebars in system_customdesign.php
Starting from line:2548 to 2619
So far this works for me and have not encountered any other issues do to the changes.
Please! be safe and back up your file before making changes.