Skilled Mutant
Newbie
- Feb 14, 2011
- 16
- 0
Hi. I'd really appreciate if someone could help me with this. I'm using a wordpress theme called iGifts. The theme designers put that Blogroll in the sidebar with their own links, and if I try to remove them, the theme stops working. When I check in sidebar.php I have this:
Network">XFN</abbr></a></li>
<li><a href="wordpress[dot]org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress</a></li>
<?php wp_meta(); ?>
</ul>
</li>
<?php endif; ?>
</ul>
<?php // This theme is released free for use under creative commons licence.
// All links in the sidebar should remain intact.
// These links are all family friendly and will not hurt your site in any way.
// Warning! Your site may stop working if these links are edited or deleted ?>
<ul><li><h2>Blogroll</h2><ul><li><a href="www[dot]present-recommendations[dot]com/">Gift Ideas</a></li> <li><a href="www[dot]geschenk-empfehlungen[dot]com/">Geschenk Empfehlungen</a></li></ul></li></ul>
<?php if(get_theme_option('ad_sidebar1_bottom') != '') {
?>
<div class="sidebaradbox">
<?php echo get_theme_option('ad_sidebar1_bottom'); ?>
</div>
<?php
}
?>
</div>
</div>
I'm just wondering what can be done there. I'm not against giving credit to the theme designers but the links they put in there might actually confuse the site visitors.
One solution I've managed to read about is using {display:none} but I'm just not sure how to do that. I'm not a programmer. I'm really hoping if someone could help..
Network">XFN</abbr></a></li>
<li><a href="wordpress[dot]org/" title="Powered by WordPress, state-of-the-art semantic personal publishing platform.">WordPress</a></li>
<?php wp_meta(); ?>
</ul>
</li>
<?php endif; ?>
</ul>
<?php // This theme is released free for use under creative commons licence.
// All links in the sidebar should remain intact.
// These links are all family friendly and will not hurt your site in any way.
// Warning! Your site may stop working if these links are edited or deleted ?>
<ul><li><h2>Blogroll</h2><ul><li><a href="www[dot]present-recommendations[dot]com/">Gift Ideas</a></li> <li><a href="www[dot]geschenk-empfehlungen[dot]com/">Geschenk Empfehlungen</a></li></ul></li></ul>
<?php if(get_theme_option('ad_sidebar1_bottom') != '') {
?>
<div class="sidebaradbox">
<?php echo get_theme_option('ad_sidebar1_bottom'); ?>
</div>
<?php
}
?>
</div>
</div>
I'm just wondering what can be done there. I'm not against giving credit to the theme designers but the links they put in there might actually confuse the site visitors.
One solution I've managed to read about is using {display:none} but I'm just not sure how to do that. I'm not a programmer. I'm really hoping if someone could help..