The Most Active and Friendliest
Affiliate Marketing Community Online!

“AdsEmpire”/  Direct Affiliate

Sidebar troubles

CoxysBlog.com

New Member
affiliate
in my blog i have a few ads down the side, but they only show small tumbnails

whats the problem?

check it out

Coxy’s Blog

Code:
<div id="left_sidebar"><?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(2) ) : else : ?>    
<ul><?php get_calendar(); ?><li><h2><?php _e('Find'); ?></h2>
<?php include (TEMPLATEPATH . '/searchform.php'); ?></li>
<li><h2><?php _e('Archive'); ?></h2><ul><?php wp_get_archives('type=monthly'); ?></ul></li>
<li><h2><?php _e('Twitter'); ?></h2><div class="ff">
<?php twitter_messages("coxyb"); ?>
<li><h2><?php _e('Shit'); ?></h2><div class="ff">

<p>&nbsp;</p>
<a href="http://www.tkqlhce.com/click-2966053-10509108" target="_top">
<img src="http://www.lduhtrp.net/image-2966053-10509108" width="120" height="90" alt="Full Color Booklets from PsPrint" border="0"/></a>
<p>&nbsp;</p>
<a href="http://www.dpbolvw.net/click-2966053-10283019" target="_top">
<img src="http://www.lduhtrp.net/image-2966053-10283019" width="125" height="125" alt="Free Business Cards Plus 14-Day Free Shipping $50+" border="0"/></a>
<p>&nbsp;</p>
<a href="http://www.kqzyfj.com/click-2966053-10301293" target="_top">
<img src="http://www.ftjcfx.com/image-2966053-10301293" width="125" height="125" alt="Buy 1 domain, get 1 free!" border="0"/></a>

</div>
</li></ul>        
<?php endif; ?></div>
 
Hello, check the linked images, they are 1px*1px gif, so that is why nothing appears.
 
In your CSS you have..
Code:
.ff a img 
{
border-top-width: 0.08em;
border-right-width-value: 0.08em;
border-right-width-ltr-source: physical;
border-right-width-rtl-source: physical;
border-bottom-width: 0.08em;
border-left-width-value: 0.08em;
border-left-width-ltr-source: physical;
border-left-width-rtl-source: physical;
border-top-style: solid;
border-right-style-value: solid;
border-right-style-ltr-source: physical;
border-right-style-rtl-source: physical;
border-bottom-style: solid;
border-left-style-value: solid;
border-left-style-ltr-source: physical;
border-left-style-rtl-source: physical;
border-top-color: #cccccc;
border-right-color-value: #cccccc;
border-right-color-ltr-source: physical;
border-right-color-rtl-source: physical;
border-bottom-color: #cccccc;
border-left-color-value: #cccccc;
border-left-color-ltr-source: physical;
border-left-color-rtl-source: physical;
padding-top: 0.077em;
padding-right: 0.077em;
padding-bottom: 0.077em;
padding-left: 0.077em;
opacity: 0.3;
[B]width: 3.5em;[/B]
[B]height: 3.5em;[/B]
margin-top: 0pt;
margin-right: 0.077em;
margin-bottom: 0.077em;
margin-left: 0pt;


3.5em is about 37px and is squeezing your images.
 
Find..

Code:
.ff a img{border:.08em solid #ccc;padding:.077em;opacity:.3;width:3.5em;height:3.5em;margin:0 .077em .077em 0;}.ff a:hover img{border:.08em solid #333;opacity:1;width:3.5em;height:3.5em;}

Replace it with..

Code:
.ff a img{border:.08em solid #ccc;padding:.077em;opacity:.3;width:125px;height:125px;margin:0 .077em .077em 0;}.ff a:hover img{border:.08em solid #333;opacity:1;width:125px;height:125px;}
 
banners
Back