Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #303411

    2 questions:

    I’m trying to put an aweber form into my sidebar and it keeps squishing it into a really long skinny form. Is there an easy way to have it keep it’s normal size?

    Is there a way to have a smaller gap in between the widgets on the sidebar?

    #303518

    Hey bethiebfit!

    Thank you for using the theme.

    You can increase the sidebar width to make room for the form. Add this on functions.php:

    function avia_increase_sidebar_size() {
    	global $avia_config;
    	
    	$avia_config['layout']['fullsize'] 		= array('content' => 'twelve alpha', 'sidebar' => 'hidden', 	 'meta' => 'two alpha', 'entry' => 'eleven');
    	$avia_config['layout']['sidebar_left'] 	= array('content' => 'eight', 		 'sidebar' => 'four alpha' ,'meta' => 'three alpha', 'entry' => 'eight');
    	$avia_config['layout']['sidebar_right'] = array('content' => 'nine alpha',   'sidebar' => 'three alpha', 'meta' => 'three alpha', 'entry' => 'nine alpha');
    }
    add_action( 'init', 'avia_increase_sidebar_size', 1);

    Regarding the gap between sidebar widgets, use this on Quick CSS or custom.css:

    .widget {
    padding: 0 0 20px 0;
    }

    Cheers!
    Ismael

    #325978

    Hey Ishmael~

    On some of my pages, the widgets are all the way up against the sidebar border. The weird thing is it’s not on every page. But I do have a few different sidebars set up. Is there a way to fix this so that there’s some white space between the border and the widgets?

    #326301

    Hey!

    Please post the actual pages with the sidebar issues. We would like to check it.

    Regards,
    Ismael

    #334109

    It is on most of them that have a sidebar except under one tab. The Springs Kettlebells tab is fine. The other pages, the aweber form is right in the middle, but everything else is up against the border, like these:

    http://bethburnsfitness.com/blog/
    http://bethburnsfitness.com/about-beth/

    #334869

    Hey!

    Please add following code to Quick CSS

    .sidebar_right {
    padding-left: 50px;
    }

    Regards,
    Yigit

    #335247

    Thank you

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Sidebar stuff’ is closed to new replies.