- 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.
<?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' ) ) : ?>
- 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.
Your help would be greatly appreciated!
Thanks!
Adam
get_sidebar()is still being called somehow. . .http://www.onedollaronebrick.org
And here's the style sheet:
http://www.onedollaronebrick.org/style.css
This is what happens, even when I insert the get_sidebar('home') and created a sidebar-home.php file
Together or because your sidebar-home.php contains duplicate code.
I don't see <?php get_sidebar(); ?> two times