Hi
There are 4 widgets in it (menu, wp-calendar, text, rss from blog). Can’t provide a link, I’m working on it my local server (MAMP on Mac), sorry…
Isn’t there a code (like “position:fixed”) that I can insert anywhere?
That’s the sidebar.php:
<?php
/**
* The Sidebar containing the main widget areas.
*
* @package Gridster
*/
?>
<div id="container">
<div id="sidebar">
<h1 id="blogtitle"><a>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo('name'); ?></a></h1>
<p class="tagline"><?php bloginfo( 'description' ); ?></p>
<div class="sidebarwidget">
<?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
</div>
<?php do_action( 'before_sidebar' ); ?>
<?php if ( ! dynamic_sidebar( 'sidebar-1' ) ) : ?>
<?php get_search_form(); ?>
<h3 class="sidetitle"><?php _e( 'Archives', 'gridster' ); ?></h1>
<ul>
<?php wp_get_archives( array( 'type' => 'monthly' ) ); ?>
</ul>
<h3 class="sidetitle"><?php _e( 'Meta', 'gridster' ); ?></h1>
<?php endif; // end sidebar widget area ?>
</div><!-- End Sidebar -->