• I am running the “This Just In!” theme, and instead of using the built-in sidebar, I am using widgets. I read that WP is set up so it is one or the other — built-in sidebar or widgetized sidebar.

    Now that I am running the widgetized sidebar, I’d like to tweak a few settings, such as the space between each widget and the alignment of the top of the sidebar overall. Are the widgetized sidebar settings still governed by settings.php and/or style.css? Or are the settings now elsewhere in a different file?

    I know this is probably a basic question, so forgive my newbie-hood! ??

    Fyi, this is the code from sidebar.php, which makes me think it may no longer be active once widgetized:

    <div id="sidebar">
    	<ul>
    	<?php 	/* Widgetized sidebar, if you have the plugin installed. */
    	if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?>
    		<li><?php include (TEMPLATEPATH . '/searchform.php'); ?></li>
    
    		<!-- Author information is disabled per default. Uncomment and fill in your details if you want to use it.-->
    		<li class="calendar">
    		<?php get_calendar(); ?>
    		</li>
    
    		<li><span class="sidetitle">Author</span>
    		<p>A little something about you, the author. Nothing lengthy, just an overview.</p>
    		</li>
    
    		<?php wp_list_pages('title_li=<span class="sidetitle">Pages</span>' ); ?>
    
    		<li><span class="sidetitle">Archives</span>
    			<ul>
    			<?php wp_get_archives('type=monthly'); ?>
    			</ul>
    		</li>
    
    		<?php wp_list_categories('show_count=0&title_li=<span class="sidetitle">Categories</span>'); ?>
    
    	<?php endif; ?>
    	</ul>
    </div>
Viewing 2 replies - 1 through 2 (of 2 total)
  • Quick answer to this one too. First of all, download the firebug extension and learn how to use it (it’s pretty easy)…it’ll make these changes so easy you won’t believe it.

    You’ll just need to adjust the margin between widget items in the sidebar. That’s in style.css or you may have to add a special rule for that…I don’t have it in front of me right now.

    BTW, that firebug extension is for firefox.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Adjusting settings in widgetized sidebar’ is closed to new replies.