I am using a wordpress theme which has just header and footer .I w'd like to continue using it by changing the width and adding side bars .
Could any one help me to change the width(to fit to the screen) of the theme .Does anybody have an Idea adding side bars ?
==========
Sorry for not making clear in my earlier question .The theme I am using is Minicard (http://blue-anvil.com/download/?did=32)
The lines similar to ...
if ( function_exists('register_sidebar') ) register_sidebar(array( 'name' => 'Sidebar Widgets', 'before_widget' => '', 'after_widget' => '', 'before_title' => '', 'after_title' => '', ));
are already there .
This is the code I found there : if ( function_exists('register_sidebar') ) {
register_sidebar(array(
'name' => __('Beneath the Card (Top)', 'minicard'),
'before_widget' => '<li id="%1$s" class="widget %2$s">',
'after_widget' => '<div class="clear"></div></li>',
'before_title' => '<h2 class="section widgettitle">',
'after_title' => '</h2>',
));
register_sidebar(array(
'name' => __('Beneath the Card (Bottom)', 'minicard'),
'before_widget' => '<li id="%1$s" class="widget %2$s">',
'after_widget' => '<div class="clear"></div></li>',
'before_title' => '<h2 class="section widgettitle">',
'after_title' => '</h2>',
));
So I have create sidebar.php and added the code you have given for side bar .
Later I have have tried to added the code
Blockquote
sidebar {
width: 240px; float:right; padding:0 20px 20px; }Blockquote to CSS
After making the changes I have looked for sidebar and I have not found any additional sidebar .
Thank you !
