26 Nov 2007, 18:06
#1
Zen Follower
- Join Date:
- Apr 2006
- Posts:
- 123
- Plugin Contributions:
- 0
Eliminating certain sidebox borders
I have the following box (it's the verified PayPal sidebox) on a store that I'm building for a person:
If I want to take the border off of just this box then would I do something like:
Or do I have to do something different?
<!--// bof: paypallogo //-->
<div class="rightBoxContainer" id="paypallogo" style="width: 150px">
<h3 class="rightBoxHeading" id="paypallogoHeading">Paypal Verified Seller</h3>
<div id="paypallogoContent" class="sideBoxContent">
<div class="wrapper">
<center>
<!-- Begin Official PayPal Seal -->
<a target="_blank" href="https://www.paypal.com/verified/pal=*********"><img src="includes/templates/template_default/images/verification_seal.gif" alt="Click to Verify" title=" Click to Verify " width="100" height="100" /></a>
<!-- End Official PayPal Seal -->
</center></div>
</div></div>
<!--// eof: paypallogo //-->If I want to take the border off of just this box then would I do something like:
#paypallogo {
background: transparent;
border: 0px;
}Or do I have to do something different?