Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #929083

    Hi, how can I make the background color of the contact form to be #f8f8f8?

    #929694

    Hey DROR,

    Please enable custom CSS class name https://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Add the below code to Quick CS

    .form-bg {
       background:gold!important;
    }

    Best regards,
    Vinay

    #929828

    I want the fields background to be #f8f8f8, not the entire form background.

    Sorry if I wasn’t clear on that :)

    #929919

    Hi,

    You can target background of text inputs with following CSS. Please add it to Quick CSS in Enfold theme options under Styling

    #top .main_color input[type='text'] { background-color: red; }

    Best regards,
    Vinay

    #930164

    That didn’t make any difference.

    I already have this code applied that makes the font inside the fields black. What should I add to it to make the field backgrounds #f8f8f8?

    .page-id-954 ::-webkit-input-placeholder {
      color: #333333 !important;;
    }
    
    .page-id-954 ::-moz-placeholder { 
      color: #333333 !important;;
    }
    
    .page-id-954 :-ms-input-placeholder { 
      color: #333333 !important;;
    }
    
    .page-id-954 :-moz-placeholder { 
      color: #333333 !important;;
    }
    #930884

    Hi,

    #top #main .main_color input[type="text"] {
        background-color: #f8f8f8 !important;
    }

    Should fix it

    Best regards,
    Basilis

    #931253

    That only worked on the first 3 fields but it also changed contact form on other pages of the site that I don’t want to change.

    How can I make this specific to only the contact form on this page and how can I make it work for all 5 fields?

    Thanks.

    #931854

    Hi,

    Please update the previous code.

    #top #main .main_color input[type='text'], #top .main_color select, #top .main_color textarea {
        background-color: #f8f8f8;
        color: #000;
    }
    

    Best regards,
    Ismael

    #932006

    Great, thanks!

    #932022

    Hi,

    I’m glad you were able to get this corrected. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘How to change the background color of the contact form?’ is closed to new replies.