Emmm…well I’m stuck. Close but stuck ??
I’ve got the box on the right with the shadow just as I want it in the right place and all…the only thing I’m not getting is how to get the text to fill in the white space between the “Award wallet” logo on the left and the new box on the right. I want the text to flow in that white space around both of those divs. I’m sure I’ve got a dumb css error.
So this is the code:
<div class="sidebar-pages"><span class="sidebar-title">Other Loyalty Resources</span>
<ul>
<li><a title="Frequent Flyer Programs" href="https://juicytravels.com/mileageair-travel-programs/">Frequent Flyer Programs</a></li>
<li><a title="Hotel Loyalty Programs" href="https://juicytravels.com/hotel-loyalty-programs/">Hotel Loyalty Programs</a></li>
<li><a title="Car Rental Loyalty Programs" href="https://juicytravels.com/car-rental-loyalty-programs/">Car Rental Loyalty Programs</a></li>
</ul>
</div>
<div class="articleimage1"><a href="https://www.awardwallet.com"><img class="alignleft" src="https://juicytravels.com/assets/articleimages/Page-LoyaltyPrograms/awardwallet.gif" alt="Award Wallet logo" width="200" height="50" /></a></div>
<div class="articlecontent1"><a title="Award Wallet" href="https://www.awardwallet.com">Award Wallet</a> keeps track of your reward programs such as frequent flyer miles, hotel and credit card points with 427 current loyalty programs. What's Juicy: It's free and it monitors your accounts to notify you when points are going to expire. The interface is clean and easy to use, and best of all there is a smart phone app so you can quickly see balances on the go. Takes some time to enter in all your accounts but it sure is nice to have once you get them set up. For a mere $5 for six months you get the premium benefit tier including unlimited expiration tracking as opposed to only 3 for a free account. The coverage is better than the popular MileageManager and MileTracker sites.</div>
<div style="clear:both;"></div>
<hr />
And this is the relevant css:
}
.articleimage1 {
float:left;
width:210px;
}
.articlecontent1 {
float:right;
}
.sidebar-pages {
width:200px;
float:right;
padding:10px;background: #fff;
border: 1px solid #ccc;
-moz-box-shadow: 0 0 5px #BBB;
-webkit-box-shadow: 0 0 5px #BBB;
box-shadow: 0 0 5px #BBB;
margin-bottom: 16px;
padding: 10px 12px;
}
.sidebar-title {
font-family:Arial, Helvetica, sans-serif;
color:#069;
font-size:14px;
font-weight:bold;
}
Do you know how to get the text to flow between the two in that white space? New style for just that item?
Thank you!