marbie 0 Report post Posted February 28, 2011 I am trying out pagelines using the platformbase child theme, by rebuilding the homepage of my last project. What I am stuck on now how I can implement the the look of the sidebar widgets. This is the site: http://www.variapassievoorslapen.nl/ Share this post Link to post Share on other sites
Guest Guest Report post Posted February 28, 2011 Let us know specifically what you are wanting to do to stylize the sidebar and we can help point you in the right direction. Share this post Link to post Share on other sites
marbie 0 Report post Posted March 1, 2011 What I did was register my sidebar widget areas this way: # Sidebar if (function_exists('register_sidebar')) { register_sidebar(array( 'name' => 'Home Sidebar', 'before_widget' => '<div id="widget2" class="rounded-corners"><div class="ribbon">', 'after_widget' => '</div></div>', 'before_title' => '<h2>', 'after_title' => '</h2></div><div class="inner-widget rounded-corners">', )); And did my styling with css. Can I do this registration part in platformbase too? Share this post Link to post Share on other sites
bryan-hadaway 3 Report post Posted March 1, 2011 Sure, using the Base functions.php and base.css. Thanks, Bryan Share this post Link to post Share on other sites