Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Takayuki Miyoshi

    (@takayukister)

    Thread Starter tjharley

    (@tjharley)

    I’ve tried adding styles and it doesn’t seem to do anything. All the fields are the same width, no matter how I style it.

    You have an !Important tag in your themes CSS (found here) that appears to be causing the issue. It’s specifying the width for several CF7 items:

    /* Contact Form 7
    ----------------------------------------------- */
    
    .wpcf7-form-control {
    	padding: 10px;
    	border: 1px solid #f0f0f0;
    	width: 50% !important;
    	font-size: 15px;
    }
    
    .wpcf7-textarea {
    	width: 70% !important;
    }
    
    .wpcf7-submit {
    	width: auto !important;
    }

    You can either modify these or get rid of them. Hope this helps! =)

    Thread Starter tjharley

    (@tjharley)

    Perfect, thank you!!

    You’re welcome!

    Don’t forget to mark the thread as resolved in the sidebar, assuming it is. =)

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Field Size Not Working’ is closed to new replies.