• So running into a problem, that I have seen others run into as well… I’ve tried diggin around and fallowing some of that advice but havent been able to figure out my problem. The Contact Form that came with my theme is overriding some of the CSS from the Fast Secure Contact Form… Here is the URL to the contact form if someone can help…

    https://valiantyachtcharters.com/contact-2

Viewing 3 replies - 1 through 3 (of 3 total)
  • I see a couple things wrong. Somehow you set the subject and message to “Not available” in the form settings. That is why those fields are missing. You can edit the form and turn them back to “Required”

    Also your style.css file contains this CSS:

    input[type="text"], input[type="password"] {
    width:420px;
    background-repeat:no-repeat;
    padding:13px 15px 13px 15px;
    border:none;
    font-family:"Trebuchet MS", "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size:12px;
    border:none;
    color:#FFF;
    text-shadow:1px 1px #000;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    }

    It causes a couple fields to have huge 13px; padding
    Consider changing this from:
    padding:13px 15px 13px 15px;
    to
    padding:0px;

    Thread Starter dschafer28

    (@dschafer28)

    Alright that did help somewhat… But the email input is still really small and different font compared to the rest… any ideas?

    change:
    input[type=”text”], input[type=”password”]

    to:
    input[type=”text”], input[type=”email”], input[type=”password”]

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Theme Conflict’ is closed to new replies.