-
AuthorPosts
-
August 12, 2014 at 8:47 pm #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?
August 13, 2014 at 2:28 am #303518Hey 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!
IsmaelSeptember 27, 2014 at 5:42 pm #325978Hey 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?
September 29, 2014 at 5:46 am #326301Hey!
Please post the actual pages with the sidebar issues. We would like to check it.
Regards,
IsmaelOctober 10, 2014 at 11:22 pm #334109It 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/October 13, 2014 at 1:36 pm #334869Hey!
Please add following code to Quick CSS
.sidebar_right { padding-left: 50px; }
Regards,
YigitOctober 13, 2014 at 11:34 pm #335247Thank you
-
AuthorPosts
- The topic ‘Sidebar stuff’ is closed to new replies.