Monique Drost
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Removing bottom navigationHi Anton,
In the meantime I decided to delete the code from navigation.php. This worked like sunshine, thanks a lot!
Forum: Themes and Templates
In reply to: Removing bottom navigationHi Anton,
Thanks for your reply. I would like to apply the second solution. In which template do I have to apply the CSS rule, in style.css or css.php or css-editor.php?
Forum: Themes and Templates
In reply to: Removing bottom navigationHi, if it is not in the footer where do you think the problem is? Please let me know so I can put the code on pastebin or on this site.
Thanks for having a look at it!Forum: Themes and Templates
In reply to: Removing bottom navigationHi, this is what is in the footer.php. I have not changed anything there. Thanks for having a look at it.
<?php
/**
* @package WordPress
* @subpackage Constructor
*/
?>
</div><!– id=’wrapcontent’ –>
<div id=”wrapfooter” class=”wrapper”>
<div id=”footer”>
<?php
// check active
if (is_active_sidebar(‘footer’)
or is_active_sidebar(‘footer-posts’)
or is_active_sidebar(‘footer-pages’)
or is_active_sidebar(‘footer-categories’)) {echo ”
- “;
// switch statement for widget place
switch (true) {
case (is_archive() && dynamic_sidebar(‘footer-categories’)):
break;
case (is_page() && dynamic_sidebar(‘footer-pages’)):
break;
case (is_single() && dynamic_sidebar(‘footer-posts’)):
break;
case (dynamic_sidebar(‘footer’)):
break;
default:
// nothing
break;
}echo “
“;
}
?>
<p class=”clear copy”>
<?php get_constructor_footer();?>
</p>
</div>
</div>
</div>
<?php wp_footer(); ?>
</body>
</html>Forum: Themes and Templates
In reply to: Removing bottom navigationHi, I tried all options and settings in the theme. I really think it is code related (and I am not an expert on this).
On each static page at the bottom appears a link like:
« Contact
This links refers to the next page id number.
My site is http://www.alexenlily.nl
Forum: Themes and Templates
In reply to: Removing bottom navigationI have the same issue, looked everywhere to resolve it. No success yet. Have you found a solution?