• My domain is http://www.solarpaneltech.com and if you will notice off to the right there is about 10px of white padding around the sidebar widget, how can I remove this? I Checked another thread that said enable Jquery and I did, but that did not work, is there any way I can remove that?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Open functions.php from the arclite folder
    Find:

    register_sidebar(array(
            'name' => 'Default sidebar',
            'id' => 'sidebar-1',
    		'before_widget' => '<li class="block widget %2$s" id="%1$s"><div class="box"> <div class="wrapleft"><div class="wrapright"><div class="tr"><div class="bl"><div class="tl"><div class="br the-content">',
    		'after_widget' => '</div></div></div></div></div></div> </div></li>',
    		'before_title' => '<div class="titlewrap"><h4><span>',
    		'after_title' => '</span></h4></div>'
        ));

    Replace with:

    register_sidebar(array(
            'name' => 'Default sidebar',
            'id' => 'sidebar-1',
    		'before_widget' => '<li class="block widget %2$s" id="%1$s"><div class="box">',
    		'after_widget' => '</div></div></div></div></div></div> </div></li>',
    		'before_title' => '<div class="titlewrap"><h4><span>',
    		'after_title' => '</span></h4></div> <div class="wrapleft"><div class="wrapright"><div class="tr"><div class="bl"><div class="tl"><div class="br the-content">'
        ));

    or just enable jQuery from the theme settings, and the padding will go away

    @erko.Risthein: Thanks for your help, but your code break the whole page if I have enabled the search widget.

    Could you fix it?

    Thanks.

    Please………. 🙁

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Acrlite 2.02 Widget display issues’ is closed to new replies.