I will regress with the current build after I post this.
The logo on my site uses a float: right and it's OK. The affiliate ads for books that I have are either float: right or float: left. All the lefthand ads are just fine but none of the righthand ads will display. There's no indication of error.
A View Page Source displays the ad's div's markup so it doesn't appear to be a problem with my Apache Server-Side Includes.
They display properly in Internet Explorer and Chrome.
I speculate that the problem has to do with the more-complicated markup and styles for the ads.
I'm open to the possibility that I have errors either in my CSS or in my HTML. My stylesheet is here:
http://soggywizards.com/css/screen.css
This page has ads on both the left and right:
http://soggywizards.com/tips/code/c++/m ... arameters/
Here's the markup for an ad:
Code: Select all
<div class="adright">
<img class="book" src="/store/books/images/small/more-effective-c++.jpg"
alt="More Effective C++ cover" />
<p class="btitle">
More Effective C++<br />
35 New Ways to Improve Your Programs and Designs</p>
<p class="author">by Scott Meyers</p>
<p class="buy">
[<a href="http://www.powells.com/cgi-bin/partner?partner_id=29425&cgi=product&isbn=020163371X">
Buy</a>]
</p>
</div>Code: Select all
<div class="adleft">
<img class="book" src="/store/books/images/small/more-c++-gems.jpg"
alt="More C++ Gems cover"/>
<p class="btitle">
More C++ Gems</p>
<p class="author">by Stanley Lippman (Foreword),<br />
Robert C. Martin (Editor),<br /> Donald G. Firesmith (Series Editor)</p>
<p class="buy">
[<a href="http://www.powells.com/cgi-bin/partner?partner_id=29425&cgi=product&isbn=0521786185">
Buy</a>]
</p>
</div>Code: Select all
div.adleft { float: left;
border: solid 1px #999999;
color: #555555;
background-color: #eeeeff;
width: 200px;
text-align: center;
padding: 3px;
margin-top: 6px;
margin-bottom: 6px;
margin-right: 20px; }
div.adright { float: right;
border: solid 1px #999999;
color: #555555;
background-color: #eeeeff;
width: 200px;
text-align: center;
padding: 3px;
margin-left: 6px;}
div.adright a:link {background-color: transparent; color: #0f1f51; }
div.adright a:visited {background-color: transparent; color: #243c88; }
div.adright a:active { background-color: transparent; color: #2e55cb; }
div.adright a:hover { background-color: transparent; color: #2e55cb; }I'm happy to do any kind of testing you ask of me.


