remove content from footer?
-
I would like to remove a link from the footer that is promoting another website, can someone help with this? i cant find the content anywhere. this is the code in the footer.php
</div>
<?php get_sidebar(); ?>
</div>
</div>
</div>
<div id=”footer”><?php wp_footer(); // WP footer hook ?>
</div>
</body></html>
-
it be must be hard coded in the code somewhere and if you try and take it out will break the theme.
does that mean im stuck with it??
do you have a link to the site? if not, view the source, look for the div id that houses the link, and in your stylesheet add:
#theid{display:none;}
and you’re off and running.
yes unless you know where to find it and recode it so that it does not break the theme.
13ham i have no idea what that means. here is the site link, at the bottom in the footer there is a link that sales websites for sale. thats what i would like to remove. http://www.bigweddingplans.com
if you can / know how to modify the style.css, add
.footerleft{
display:none;
}to the end.
if you don’t know how to edit the style.css but can add a text widget, insert this into it:
<style type=”text/css”>
.footerleft{
display:none;
}
</style>
and don’t give it a title. should work.I think that appears to be a child theme for “Options” (a discontinued theme) created by Justin Tadlock. Is that a theme you purchased, or a freebie child theme? If it’s a freebie, can you post a link to the source? If it’s not a freebie, you might want to contact support where you purchased it, and express your concern.
no idea what the source is and its a child theme, i bought the website from somone but and at 13ham not sure how to do either of those and I dont want to take out everything just the websites for sale link. http://www.bigweddingplans.com
The topic ‘remove content from footer?’ is closed to new replies.