0

我有一个 Wordpress 网站,我需要在其中创建一个在透明黑色背景上包含文本的滑块。一个例子是http://playbaseballincentralamerica.com/。这是我与革命滑块插件一起使用的 css:

position: absolute; 
color: #fff; 
text-shadow: none; 
font-weight: 800; 
font-size: 60px; 
line-height: 60px; 
font-family: Arial; 
margin: 0px; 
border-width: 0px; 
border-style: none; 
white-space:nowrap; 
padding: 0px 4px; 
padding-top: 1px;   
background-color: rgba(0, 0, 0, 0);
visibility: visible;

所以我也尝试了以下方法:

background-color: black;
background-color: transparent;

我已经从http://playbaseballincentralamerica.com/复制了 css,因为我可以访问它,但它不起作用。所以我在想的是,也许有一个 div 标签或所有背景都透明的东西。但我不知道它在哪里或如何工作......任何人都可以帮助我吗?我提前感谢您的帮助。

4

1 回答 1

0

div使用以下CSSclass调用:tp-caption very_big_white

.tp-caption.very_big_white {
     background-color: rgba(0, 0, 0, 0.6);
}

您可以将具有相同属性的类添加到您的 div 中,以达到您想要的效果。

于 2013-10-08T02:29:43.623 回答