Okay
  Public Ticket #1895983
Contact Form styling
Closed

Comments

  • Marc started the conversation

    1) The check boxes in the contact form are very light grey, can they be darker?

    2) The submit button doesn't follow the rest of the theme's styling (hover underline), instead it seems to be hardcoded orange hover. Can it be changed the the theme style?

  •  1,559
    Laborator replied

    Hi Marc,

    Add this CSS to Custom CSS so the changes you requested will be applied in your site:

    input[type=checkbox], input[type=radio] {
        border: 1px solid #CCC;
    }
    .contact-form .button:after {
        content: '';
        overflow: hidden;
        position: absolute;
        left: 0;
        bottom: -1px;
        display: block;
        width: 0%;
        height: 1px;
        background-color: #000;
        transition: all .3s cubic-bezier(.175,.885,.32,1.075);
    }
    .contact-form .button:hover:after {
        width: 100%;
    }
    .contact-form .button:hover, 
    .form-submit .button:hover {
        color: #000;
    }
    

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group

  •  2
    Edward replied

    What extra css do I need to add to change the font size and colour of the submit button on my contact form? I basically want to give it an H2 tag?

  •  1,559
    Laborator replied

    Hi Edward,

    Use this CSS for the contact button:

    .contact-form .button {
        background: #000 !important;
        font-size: 22px;
    }
    

    P.S. Please create a new ticket next time.

    Best regards,
    Laborator Team


      Documentation         Join Kalium Users Group