我环顾四周,但我遇到的任何事情似乎都没有为我想要实现的目标而努力。
我有盒子,我正在使用渐变/背景。该框询问用户是否想为朋友购买该产品,因此我也想在其中添加一张礼物照片。问题是礼物照片出现在另一张图片的背面,我找不到修复它的方法。
顺便说一句,我正在使用主题开发 WP。
这是我的代码:
PHP
<div class="gift boxed3">
<span class="gift_title">
<?php gb_e('Buy for friend') ?>
</span>
</div>
CSS
.gift{
font-size: 0.6em;
font-family: Arial;
float:left;
}
.gift_title {
color: #666666;
font-size: 15px;
font-family: arial;
font-weight: bold;
margin-left: 10px;
margin-top: 10px;
line-height: 66px;
}
.boxed3 {
width: 297px;
height:65px;
background-color: #f9f9f9;
margin-top: 15px;
border-radius: 5px;
-moz-border-radius: 5px;
background-image: url(http://domain.gr/example/gradient.png);
background-repeat: repeat-x;
background-position: center bottom;
border-bottom: 1px solid #CCC;
border-bottom: 1px solid rgba(0, 0, 0, .1);
box-shadow: 0 1px 1px #7D7D7D;
}