sarugnate
Forum Replies Created
-
Thank you for the response Eli! ??
Forum: Themes and Templates
In reply to: Footer does not align center on pages without sidebarDohman! That did it! Thank you so much! You’re such an angel! ?? I wish there was a way to give you a thumbs up here. Thanks so much! ??
Forum: Themes and Templates
In reply to: Footer does not align center on pages without sidebarHi dohman. Yes, the footer should have a pink border around it so that it’s uniform all throughout the site. That means the footer should have a pink border regardless of whether the page has a sidebar or not. Thanks for all your help so far. ??
Forum: Themes and Templates
In reply to: Footer does not align center on pages without sidebarHi dohman! Thanks for the response. I’m sorry for being such a noob, but where would I typically find that? I mean the file for the template….
EDIT: I found a page.php and tried to move the /div for the container below the footer but it messes up the format..it did include the footer but the sidebar suddenly moved below the footer…err…could you walk me through where I should move the /div to? here’s the code:
<?php /** * Page Template * * … * * @package Thematic * @subpackage Templates */ // calling the header.php get_header(); // action hook for placing content above #container thematic_abovecontainer(); ?> <div id="container"> <?php // action hook for placing content above #content thematic_abovecontent(); // filter for manipulating the element that wraps the content echo apply_filters( 'thematic_open_id_content', '<div id="content">' . "\n" ); // calling the widget area 'page-top' get_sidebar('page-top'); // start the loop while ( have_posts() ) : the_post(); // action hook for placing content above #post thematic_abovepost(); ?> <div id="post-<?php the_ID(); ?>" <?php post_class(); ?> > <?php // creating the post header thematic_postheader(); ?> <div class="entry-content"> <?php the_content(); wp_link_pages( "\t\t\t\t\t<div class='page-link'>" . __( 'Pages: ', 'thematic' ), "</div>\n", 'number' ); edit_post_link( __( 'Edit', 'thematic' ), "\n\t\t\t\t\t\t" . '<span class="edit-link">' , '</span>' . "\n" ); ?> </div><!-- .entry-content --> </div><!-- #post --> <?php // action hook for inserting content below #post thematic_belowpost(); // action hook for calling the comments_template thematic_comments_template(); // end loop endwhile; // calling the widget area 'page-bottom' get_sidebar( 'page-bottom' ); ?> </div><!-- #content --> <?php // action hook for placing content below #content thematic_belowcontent(); ?> </div><!-- #container --> <?php // action hook for placing content below #container thematic_belowcontainer(); // calling the standard sidebar thematic_sidebar(); // calling footer.php get_footer(); ?>
Forum: Themes and Templates
In reply to: Footer does not align center on pages without sidebarHmmm….using firebug, I see that there’s that part on insidewrap, but the footer is not inside it. On the homepage, the footer is inside the insidewrap div…will the problem get solved if I make a php condition to include the footer in the insidewrap?
Forum: Themes and Templates
In reply to: Footer does not align center on pages without sidebarHi Andrew! I don’t really know. If I have it on those pages, will the issue be resolved? If so, how do I add that? I’m sorry. I’m a noob at css and html…
Forum: Themes and Templates
In reply to: Footer does not align center on pages without sidebarthanks for the reply doman. I changed the code (to have it without borders) as a friend told me that on the home page, there was already a border for the footer (the reason being what you pointed out), so I didn’t need to put it there. Now my problem is, on pages with a sidebar, the footer no longer has that border. How do I give it that same pink border?