CarlMartin10
08-16-2010, 06:20 AM
I have the css set up on my page to show a background image....bit it is not there.
Here is the page ... on slide 1: http://billboardfamily.com/the-process/
There is supposed to be an image...and I want it to appear at the bottom of the slide.
html code:
<div id="slides">
<div class="img1"><img src="http://billboardfamily.com/wp-content/themes/mensa/assets/images/calendar_icon.png" alt="Choose Your Day(s)" /></div>
<div class="img2"><img src="http://billboardfamily.com/wp-content/themes/mensa/assets/images/paypal_icon.png" alt="Pay With Paypal" /></div>
<div class="text1">
<h3>Choose Your Day(s)</h3>
First, decide which day, or days, you would like to purchase. Days in 2010 begin at $2 for January 1 and increase daily by $2, until December 31, which is $730. Claim your day NOW!
</div>
<div class="text2">
<h3>Pay With PayPal™</h3>
Next, pay via PayPal with any major credit card, a checking account, or your PayPal balance. You don’t even have to be a PayPal member! It’s safe, secure, and free!
</div>
</div>
css
/** BEGIN slides **/
#slides {
background: url(../images/slide1_bg.png) no-repeat bottom;
}
#slides .img1 {
float: left;
padding-left: 35px;
}
#slides .img2 {
float: left;
padding-left: 75px;
}
#slides .text1 {
float: left;
width: 200px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
margin-left: 30px;
overflow: hidden; /*contain floats*/
background-color: #f2f2f2;
font-family: Arial;
background: #f2f2f2;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
-khtml-border-radius: 8px;
behavior: url(/border-radius.htc);
border-radius: 8px;
}
#slides .text1 h3 {
color: #00afef;
padding-bottom: 5px;
}
#slides .text2 {
width: 200px;
float: left;
margin-left: 80px;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 10px;
overflow: hidden; /*contain floats*/
background-color: #f2f2f2;
font-family: Arial;
background: #f2f2f2;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
-khtml-border-radius: 8px;
behavior: url(/border-radius.htc);
border-radius: 8px;
}
#slides .text2 h3 {
color: #00afef;
padding-bottom: 5px;
#slides .text1 h3 {
color: #00afef;
padding-bottom: 5px;
}
/** END slides **/
Here is the page ... on slide 1: http://billboardfamily.com/the-process/
There is supposed to be an image...and I want it to appear at the bottom of the slide.
html code:
<div id="slides">
<div class="img1"><img src="http://billboardfamily.com/wp-content/themes/mensa/assets/images/calendar_icon.png" alt="Choose Your Day(s)" /></div>
<div class="img2"><img src="http://billboardfamily.com/wp-content/themes/mensa/assets/images/paypal_icon.png" alt="Pay With Paypal" /></div>
<div class="text1">
<h3>Choose Your Day(s)</h3>
First, decide which day, or days, you would like to purchase. Days in 2010 begin at $2 for January 1 and increase daily by $2, until December 31, which is $730. Claim your day NOW!
</div>
<div class="text2">
<h3>Pay With PayPal™</h3>
Next, pay via PayPal with any major credit card, a checking account, or your PayPal balance. You don’t even have to be a PayPal member! It’s safe, secure, and free!
</div>
</div>
css
/** BEGIN slides **/
#slides {
background: url(../images/slide1_bg.png) no-repeat bottom;
}
#slides .img1 {
float: left;
padding-left: 35px;
}
#slides .img2 {
float: left;
padding-left: 75px;
}
#slides .text1 {
float: left;
width: 200px;
padding-top: 10px;
padding-left: 10px;
padding-bottom: 10px;
margin-left: 30px;
overflow: hidden; /*contain floats*/
background-color: #f2f2f2;
font-family: Arial;
background: #f2f2f2;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
-khtml-border-radius: 8px;
behavior: url(/border-radius.htc);
border-radius: 8px;
}
#slides .text1 h3 {
color: #00afef;
padding-bottom: 5px;
}
#slides .text2 {
width: 200px;
float: left;
margin-left: 80px;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 10px;
overflow: hidden; /*contain floats*/
background-color: #f2f2f2;
font-family: Arial;
background: #f2f2f2;
-moz-border-radius: 8px;
-webkit-border-radius: 8px;
-khtml-border-radius: 8px;
behavior: url(/border-radius.htc);
border-radius: 8px;
}
#slides .text2 h3 {
color: #00afef;
padding-bottom: 5px;
#slides .text1 h3 {
color: #00afef;
padding-bottom: 5px;
}
/** END slides **/