Add small gif to sidebar
-
I want to add a peace flag in my sidebar (in place of the calendar). For the life of me, I can’t find out how to do it. Can you help? My address is:
https://www.ceconn.com/canwetalk
Here is my coding for my site’s sidebar. As you will notice, I tried to add the code for the .gif:
div id="right">
<div class="subcontainer">
<ul>
<?php if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar(1) ) : ?>
<h3>Favourite Adage</h3>
<p class="intro">
This, too, shall pass.<?php endif; ?>
</ul>
</div>
<div class="subcontainer">
<div class="rightsub2">
<ul>
<?php if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar(2) ) : ?>
<h2>Recent</h2>
<ul>
<?php get_archives('postbypost','12','custom','<li>','</li>'); ?>
</ul>
<div id="right">
<img alt="peace"
scr="https://www.ceconn.com/public_html/canwetalk/wp-content/themes/andreas04-10/peace.gif/75x50 /">
</div>
<h2>Favourite Sites</h2>
<ul>
<?php get_links('-1', '<li>', '</li>', '', FALSE, 'id', FALSE, FALSE, -1, FALSE,
TRUE); ?>
<ul>
</ul>
<h2>Site Admin</h2>
<ul>
<?php wp_loginout(); ?>
<?php wp_register(); ?>
</ul>
<?php endif; ?>
</ul>
<!-- Site Meter XHTML Strict 1.0 -->
<script type="text/javascript" src="https://s27.sitemeter.com/js/counter.js?site=s27Rikki">
</script>
<!-- Copyright (c)2006 Site Meter -->
</div>
<div class="rightsub">
<ul>
<?php if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar(3) ) : ?>
<h2>Archives</h2>
<ul>
<?php get_archives('monthly', '12', 'html', '', '', TRUE); ?>
</ul>
<h2>Categories</h2>
<ul class="sellLi">
<?php wp_list_cats(''); ?>
</ul>
<h2>Sponsors</h2>
<align="left">
<script type="text/javascript"><!--
google_ad_client = "pub-3667784878005013";
google_ad_width = 120;
google_ad_height = 600;
google_ad_format = "120x600_as";
google_ad_type = "text_image";
google_ad_channel ="";
google_color_border = "CCCCCC";
google_color_bg = "CCCCCC";
google_color_link = "000000";
google_color_text = "333333";
google_color_url = "666666";
//--></script>
<script type="text/javascript"
src="https://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
<h2>RSS</h2>
<ul>
<a href="<?php bloginfo('rss2_url'); ?>">Entries RSS</a>
<a href="<?php bloginfo('comments_rss2_url'); ?>">Comments RSS</a>
</ul>
<h2>Valid RSS</h2>
<ul>
<a href="https://feedvalidator.org/check.cgi?url=http%3A//www.ceconn.com/canwetalk/%3Ffeed%3Drss2"><img src="valid-rss.png" alt="[Valid RSS]" title="Validate my RSS feed" /></a>
<?php endif; ?>
</ul>
</div>
</div>
</div>BTW, the RSS feed doesn’t work.
- The topic ‘Add small gif to sidebar’ is closed to new replies.