• Resolved wpfrance

    (@wpfrance)


    Hi,

    I make a form with contact form 7.

    Creation of the form is ok and the page who must display the form also.

    But, if i submit the form with error i can see the red square but nothing in.

    I have the same form on another wp site and it works perfectly. (If i submit the form with error i can see the red square with the error message)

    I think the problem is from the theme i use (http://designdisease.com/blog/designdisease-theme-released/). Maybe css conflict ?

    Can anyone give me a hint to solve the problem ?

    thanks

Viewing 1 replies (of 1 total)
  • Thread Starter wpfrance

    (@wpfrance)

    I find the solution.

    It was a css conflict.

    In my case in the file styles.css of your plugin, search the span.wpcf7-not-valid-tip tag and add color (color :red)

    span.wpcf7-not-valid-tip {
    
        position: absolute;
    
        top: 20%;
    
        left: 20%;
    
        z-index: 100;
    
        background: #fff;
    
        border: 1px solid #ff0000;
    
        font-size: 10pt;
    
        width: 280px;
    
        padding: 2px;
    
        color:red; // Here is the color
    
    }

    It must work.

Viewing 1 replies (of 1 total)
  • The topic ‘[Plugin: Contact Form 7] Red square error are empty’ is closed to new replies.