• Hi everyone,

    I’d like to remove the “Powered By WordPress” footer at the bottom and upload my own custom footer. I’m planning on putting a WordPress logo on the front page of the site, so I do plan on giving kudos to WordPress, I just don’t want to do it on the footer.

    I have the custom footer in a jpg banner file. I tried using CSS and HTML to create a div container for the footer, but I found I couldn’t delete the powered by wordpress footer. Any suggestions?

Viewing 6 replies - 1 through 6 (of 6 total)
  • Try looking in your theme’s footer.php file.

    Thread Starter rogerwhitson

    (@rogerwhitson)

    I’m creating a child theme. Can I just put in new values for the footer there? Or do I need to rewrite the original php?

    In theory, you should only need to create a new footer.php file in your child theme.

    Thread Starter rogerwhitson

    (@rogerwhitson)

    well, I decided to edit the footer.php directly.

    Any suggestions for creating a footer container? My current footer doesn’t have a container. I’d like to create this container and upload a banner image I have to be the background.

    Thread Starter rogerwhitson

    (@rogerwhitson)

    Okay, this is what I put into footer.php

    For some reason, I can’t get the footer image to be centered with my header and the body of my blog. The image is shifted slightly to the right.

    —-

    </div> <!– #container –>

    <?php do_action( ‘bp_after_container’ ) ?>
    <?php do_action( ‘bp_before_footer’ ) ?>

    <div id=”footer”>
    <img src=”http://www.domain.edu/wp-content/themes/bp-default/images/image.jpg&#8221; Width=1250 Height=99 alt=”image.jpg”/>
    <p></p>

    <?php do_action( ‘bp_footer’ ) ?>
    </div><!– #footer –>

    <?php do_action( ‘bp_after_footer’ ) ?>

    <?php wp_footer(); ?>

    </body>

    </html>

    Did I miss something? Do I center it in the style.css sheet? If so, what code would work best?

    A link to a page with this footer in place would help.

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Footer Questions’ is closed to new replies.