porphyrist
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Which place in css can effect footer?I’ve uploaded a fresh copy of the theme and deactivated all plugins but footer was still invisible! It’s all about css. I wish I could contact the author of the theme.
Forum: Themes and Templates
In reply to: Which place in css can effect footer?There is <?php wp_head(); ?> before </head> in header.php too. Without <?php wp_head(); ?> in sidebar.php online counter doesn’t work.
<?php wp_head(); ?> in sidebar.php doesn’t effect the footer, when I remove it footer doesn’t appear.
Forum: Themes and Templates
In reply to: Which place in css can effect footer?But there is no <head> section in sidebar.php. If I remove <?php wp_head(); ?> from sidebar.php user online counter always shows 0.
Ok, I’ve removed lines 56, 57 but footer is still invisible.
Someting with css because I see the footer when I remove css.
Forum: Themes and Templates
In reply to: Which place in css can effect footer?sidebar.php:
https://wordpress.pastebin.ca/879767Maybe someting in the end of sidebar.php?
<?php endif; ?>
<?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>
<?php } ?>
</div>Forum: Themes and Templates
In reply to: Which place in css can effect footer?Footer doesn’t appear. Error moves to next line with <?php wp_footer(); ?>.
Forum: Themes and Templates
In reply to: Which place in css can effect footer?Forum: Themes and Templates
In reply to: Which place in css can effect footer?The code <?php get_footer(); ?> is in index.php of theme I’m using
(wp-content/themes/mytheme/index.php)footer.php contains code:
<div id=”footer”>
Some copyright information…
<?php wp_footer(); ?>
</div>
</body>
</html>CSS file on pastebin:
https://wordpress.pastebin.ca/879257Forum: Themes and Templates
In reply to: Which place in css can effect footer?Unfortunately, footer is still invisible. I don’t think color is a problem, because font color is not white. But I tried changing to different colors.
Forum: Fixing WordPress
In reply to: Can’t see my footer..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;
}