- My client has requested that I make a separate template for the first page so the main content area and the sidebar are not as tall/long.
I achieved that with the main content area, but had tried pasting in the code I had in the sidebar.php file, in place of get_sidebar(), and it makes 2 duplicate sidebars instead of 1 static sidebar.
I want to set a custom div for the sidebar in the index, so that it becomes shorter.
I have already enabled a JS script that makes both the main-content and the sidebar's heights equal to eachother, so that's not the issue, the dynamic PHP stuff is.
It has been suggested that the <?php get_sidebar(); ?> function is being called twice. I just can't figure out *where* it's being called twice.
<?php /* Template Name: One Dollar, One Brick: Home */
get_header(); ?> <div id="content-wrapper"> <div class="column" id="index-content"> <div id="slogan"><font size="+3">All It Takes Is One Dollar.</font></div>
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<p align="right"><?php /* When we call the dynamic_sidebar() function, it'll spit out * the widgets for that widget area. If it instead returns false, * then the sidebar simply doesn't exist, so we'll hard-code in * some default sidebar stuff just in case. */ if ( ! dynamic_sidebar( 'primary-widget-area' ) ) : ?>
<p align="right"><?php /* When we call the dynamic_sidebar() function, it'll spit out * the widgets for that widget area. If it instead returns false, * then the sidebar simply doesn't exist, so we'll hard-code in * some default sidebar stuff just in case. */ if ( ! dynamic_sidebar( 'primary-widget-area' ) ) : ?>
From what I can see, on all pages the main content and the sidebar get the same height by assigning them a fixed height -- I assume that's the Javascript you mentioned.
On the main page, both the main content and the sidebar also get a fixed height, but too much height for the sidebar (1098 pixels, the main content is 858 pixels), so I'm wondering if your Javascript is doing it's proper job there.
I've been working on this site for a bit - http://www.onedollaronebrick.org
- My client has requested that I make a separate template for the first page so the main content area and the sidebar are not as tall/long.
I achieved that with the main content area, but had tried pasting in the code I had in the sidebar.php file, in place of get_sidebar(), and it makes 2 duplicate sidebars instead of 1 static sidebar.
I want to set a custom div for the sidebar in the index, so that it becomes shorter.
I have already enabled a JS script that makes both the main-content and the sidebar's heights equal to eachother, so that's not the issue, the dynamic PHP stuff is.
It has been suggested that the <?php get_sidebar(); ?> function is being called twice. I just can't figure out *where* it's being called twice.
Your help would be greatly appreciated!
Thanks!
Adam
On the main page, both the main content and the sidebar also get a fixed height, but too much height for the sidebar (1098 pixels, the main content is 858 pixels), so I'm wondering if your Javascript is doing it's proper job there.