• I’ve added <?php get_footer(); ?> to index.php of my theme and I have footer.php with

    <div id=footer>
    text…
    <?php wp_footer(); ?>
    </div>

    in the same directory, but I still can’t see I footer.

    Could somebody help me please?

Viewing 2 replies - 1 through 2 (of 2 total)
  • What is your footer supposed to show then? Here’s mine:

    </div> <!-- wrapper -->
    <div id="footer">
    	No material of this website can be used in any way without explicit permission.<br />
    	Powered by <a href="https://www.ads-software.com/" title="Powered by WordPress.">WordPress</a>
    	<?php wp_footer(); ?>
    </div>
    </div> <!-- page -->
    </body>
    </html>

    Which shows the text “no material…” and “powered by wp” with a link. Your file seems to be nothing more than “this is a footer without content” to me.

    Thread Starter porphyrist

    (@porphyrist)

    Well there is some text, but the problem is that I can’t see the footer at all, it’s not shown and I down’t understand why? Seems like my code is correct.

    Maybe this is because of css? When I remove css I see the footer, but then all page is shown incorrectly.

    Here is footer part in my css:
    #footer {
    padding: 0 0 0 1px;
    margin: 0 auto;
    width: 760px;
    clear: both;
    }

    #footer p {
    margin: 0;
    padding: 20px 0;
    text-align: center;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Can’t see my footer..’ is closed to new replies.