自定义标题背景透明

时间:2016-01-22 17:08:54

标签: css wordpress

有没有办法让wordpress网站的标题透明,并通过它看到滑块?

这是wordpress网站,我试图自定义标题。

http://xusom2.mymediapaldesign.com/

1 个答案:

答案 0 :(得分:0)

也许我没有抓住问题的全部含义(以及'滑块'的含义),但最容易想到的答案是使用CSS。

header{background:none;}

header {opacity:0.5;} /*any number between 0 and 1*/

如果你想改变背景的不透明度,可以这样:

header {background: rgba(255, 255, 255, 0.9);} /*where 0.9 is the opacity and the rest is the color in RGB*/

太容易了?