• Nicholas Ritson

    (@nicholas-ritson)


    Im using the HTML5 Blank theme, but having a few issues, first being the blog page title “Latest Posts” cannot seem to find where this piece of code is being kept, its not in the php file that its currently using, and the index.php file only has this:

    <section role=”main”>

    <h1><?php _e( ‘Latest Posts’, ‘html5blank’ ); ?></h1>

    <?php get_template_part(‘loop’); ?>

    <?php get_template_part(‘pagination’); ?>

    </section>
    <!– /section –>

    tried removing the ‘Latest Posts” in there but nothing changes. where can i find this and remove it?

    second problem is the footers, on the blog page it wont stay at the bottom and overlaps the content, the css for it is:

    .footer {
    width:100%;
    background-color:#FFF;
    border-top:12px solid #09c;
    height:300px;
    bottom:0;
    left:0;
    position:absolute;
    }

    even tried to cheat it by putting in a div styled height tag to push the content apart but surprisingly it does absolutely nothing. any ideas?

    thanks.
    heres a link to a image of what i mean:

    http://prntscr.com/11nb94

Viewing 2 replies - 1 through 2 (of 2 total)
  • timduncan

    (@timduncan)

    maybe try putting a clearfix div after your section? (blind guess).
    could you share your url?

    Thread Starter Nicholas Ritson

    (@nicholas-ritson)

    working on it from localhost.
    http://localhost/Freelance/?page_id=249

    interestingly enough, even when i open the php template for it, its not recognizing any changes i make to it.

    <?php
     /*
     Template Name: blogging
     */
     ?>
    
    <?php get_header(); ?>
    
    	<!-- section -->
    
        <?php if ( function_exists( 'get_wp_parallax_content_slider' ) ) { get_wp_parallax_content_slider(); } ?>
    
    	<section role="main">
    
    		<h1><?php _e( 'Latest Posts', 'html5blank' ); ?></h1>
    
    		<?php get_template_part('loop'); ?>
    
    		<?php get_template_part('pagination'); ?>
    
    	</section>
    
    	<!-- /section -->
    
    <?php get_sidebar(); ?>
    
    <?php get_footer(); ?>

    [Please post code & markup between backticks or use the code button. Your posted code may now have been permanently damaged by the forum’s parser.]

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘blog title and footer overlap problem’ is closed to new replies.