• I am testing a website that I am thinking about setting up (kinda just to see how well wordpress can handle it)

    I want to incorporate a aStore from amazon in a iframe to my site

    test.communityarticles.com

    I setup the subdomain just for testing purposes, don’t make fun of my awesome filler text lol

    Back to the subject though. When you click the store from the menu up top it brings up my aStore just fine to an extent, but I want the sidebar to show from my aStore also. Which is cut off because of the menu bar having reserved space for there I believe.

    I am using a template file for my “store” page and this is the code I am using on it

    < ?php
    /*
    Template Name: Store
    */
    ?>
    <?php get_header(); ?>
    
    	<div id="container">
    		<div id="content">
    
      		<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
        		<div class="post store" id="post-<?php the_ID(); ?>">
        		  <h1><?php the_title(); ?></h1>
        		  <?php edit_post_link(__( 'Edit this entry', 'default' ), '<small class="meta">', '</small>'); ?>
        			<div class="entry">
                <?php the_content(''); ?>
        			  <?php wp_link_pages(array('before' => '<div class="page-link clearfix"><strong>Pages:</strong>', 'after' => '</div>', 'next_or_number' => 'number', 'pagelink' => '<span>%</span>')); ?>
              </div>
        		</div>
    
        		<?php comments_template('', true); ?>
    
      		<?php endwhile; endif; ?>
    
    		</div><!-- #content -->
    	</div><!-- #container -->
    
    <?php get_footer(); ?>

    and I have my store labeled as such, I thought that since I don’t declare it to get the sidebar that it wouldnt reserve the space for it on this template page but I seem to be mistaken…

    I am sorry if I missed some information that is needed to fix this problem please tell me what else I need. Thanks in advanced for the help!

The topic ‘Spanning Content Through My Menu?’ is closed to new replies.