访问css选择器联系表单7

时间:2017-11-18 14:16:04

标签: wordpress revolution-slider

我正在尝试在Revolution Slider中设置联系表单7的样式我无法为标签获得正确的选择器。我已经展示了我在下面尝试过的内容。我正在使用最新版本的wordpress和革命滑块。

这是我尝试的CSS。

/* ******************* */
/* FITTING ADJUSTMENTS */
/* ******************* */

/* default height for <textarea> message field */
.rev_slider .wpcf7-textarea {height: 200px}



    .wpcf7
    {

     color:black; 
    }

    .label {
     color:black;   
    }

这是我的联系表格7模块,我将如何访问该标签。

    <label> Your Name (required)
        [text* your-name] </label>

    <label> Your Email (required)
        [email* your-email] </label>

    <label> Subject
        [text your-subject] </label>

    <label> Your Message
        [textarea your-message] </label>

    [submit "Send"]

1 个答案:

答案 0 :(得分:1)

以下是CF7元素的一些示例:

.wpcf7 label { /* for labels */ }
.wpcf7 textarea { /* for labels */ }
.wpcf7 input { /* for labels */ }

等等。 请注意,您不应该使用“。”在字符串之前如果它是HTML标记(例如div,label,input等)那么“.label”和“.textarea”是错误的用法。

“”。仅用于CSS类名选择器。

.wpcf7-textarea - 这也是错误的用法。只需使用.wpcf7 textarea。