Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Div Issue

  • This topic is empty.
Viewing 9 posts - 1 through 9 (of 9 total)
  • Author
    Posts
  • #43025
    LaurelBrittany
    Participant

    The div is inside of the wrapper in the code, but on the page it is outside of the wrapper. Is there something going on on the page that is making it come outside of the wrapper.

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <title>The Avocado Girl</title>
    <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css">
    <link href='http://fonts.googleapis.com/css?family=Noticia+Text' rel='stylesheet' type='text/css'>
    <link href='http://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
    <?php wp_head(); ?>
    </head>
    <body>
    <header>
    <div class="wrapper">
    <div id="titlebar">

    <img id="logo" src="<?php bloginfo('stylesheet_directory'); ?>/images/avocado.png" width="102" height="112" alt="avocado girl" />
    <img id="title" src="<?php bloginfo('stylesheet_directory'); ?>/images/title.png" width="496" height="46" alt="TheAvocadoGirl.Com" />
    <div class="clear"></div>

    </div><!-- end titlebar -->
    </div><!-- end wrapper -->

    </header>
    <div class="wrapper">
    <div id="nav">
    <?php wp_nav_menu(array( 'menu' => 'mainnav', 'menu_class' => 'nav-bar-content', 'menu_id' => 'navigation', 'container' => false, 'theme_location' => 'primary-menu', 'show_home' => '1')); ?>
    </div><!-- end nav -->
    </div><!-- end wrapper -->
    <div class="wrapper">
    <div id="content">
    <?php get_header(); ?>

    <?php if ( ! have_posts() ) : ?>
    <h1>Not Found</h1>
    <p>Apologies, but no results were found for the requested archive. Perhaps searching will help find a related post</p>
    <?php endif; ?>

    <?php while ( have_posts() ) : the_post(); ?>
    <div class="article">
    <h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1>
    <span class="date"><?php the_date(); ?></span>
    </a>
    <?php if ( is_archive() || is_search() ) : // Only display excerpts for archives and search. ?>
    <?php the_excerpt(); ?>
    <?php else : ?>
    <?php the_content('Read More'); ?>
    <?php endif; ?>
    <div class="meta">
    <img src="<?php bloginfo('stylesheet_directory'); ?>/images/tag.png" width="15" height="13" alt="tags" /><span class="tags"><?php the_tags(); ?></span>
    <img src="<?php bloginfo('stylesheet_directory'); ?>/images/category.png" width="15" height="14" alt="categories" /><span class="categories"><?php the_category(', '); ?></span> </span>
    <img src="<?php bloginfo('stylesheet_directory'); ?>/images/comments.png" width="20" height="15" alt="Comments" /><span class="comments"><?php comments_popup_link('Leave a comment', '1 Comment', '% Comments'); ?></span>
    </div>
    <?php comments_template( '', true ); ?>
    </div>

    <?php endwhile; ?>
    <div class="clear"></div>
    <?php if ( $wp_query->max_num_pages > 1 ) : ?>
    <div id="older-posts"><?php next_posts_link('Older Posts'); ?></div>
    <div id="newer-posts"><?php previous_posts_link('Newer Posts'); ?></div>
    <?php else: ?>
    <div id="only-page">No newer/older posts</div>
    </div><!-- end content -->
    <?php endif; ?>


    <?php get_footer(); ?>

    <div id="sidebar">
    <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar("sidebar") ) : ?>
    <?php endif; ?>
    </div><!-- end sidebar -->
    <?php get_sidebar(); ?>
    </div><!--end wrapper -->
    <div class="clear"></div>
    <footer>
    <div class="wrapper">
    <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar("footer") ) : ?>
    <?php endif; ?>
    <span id="copyright">Copyright &copy; 2013</span>
    </div><!-- end wrapper -->
    <?php wp_footer(); ?>
    </footer>
    </body>
    </html>
    Check out this Pen!

    The broken page: http://theavocadogirl.com/2013/02/mock-refried-beans/

    #126377
    Paulie_D
    Member

    Already being discussed here

    https://css-tricks.com/forums/discussion/22971/getting-divs-to-work-for-sidebar#Item_19

    Just because you don’t like the answers you are getting is no reason to start a new thread.

    #126379
    LaurelBrittany
    Participant

    I thought it related more to php. Stop commenting on my posts please. There is no rule that says that I cannot post in multiple threads.

    #126381
    Paulie_D
    Member

    I’ll comment wherever I wish.

    If you people raise multiple threads about the same issue it wastes other viewers time.

    However, we’ve now narrowed this down to a PHP issue (I think) and let the experts in that subject take over.

    #126382
    LaurelBrittany
    Participant

    Can someone show me what I can change to make this page work? I’m not understanding what needs to be changed to get the wanted result.

    #126456
    LaurelBrittany
    Participant

    The pin is not what my pages look like. They are in separate files. I simply put them into one pin for convenience. Honestly, I think it is easy to check for the divs one it is in one file.

    #126457
    LaurelBrittany
    Participant

    What is the point of loading the sidebar if you already have it loaded like you do in your example?

    #126458
    LaurelBrittany
    Participant

    http://theavocadogirl.com/2013/02/mock-refried-beans/

    If you look at firebug it is now inside of the wrapper but it isn’t showing up next to the content.

    #126459
    LaurelBrittany
    Participant

    Finally fixed this . . . The Cannot be placed inside of this
    max_num_pages > 1 ) : ?>

    No newer/older posts


    That was the problem.

Viewing 9 posts - 1 through 9 (of 9 total)
  • The forum ‘Back End’ is closed to new topics and replies.