Banner Logo

Be a part of the family: Connect, Receive Support,
Contribute, and Reap Abundant Rewards!

FORM COLOR VERY LIGHT

General Marketplace Discussion (User’s interaction forum)

Tagged: , , ,

Resolved
Viewing 6 reply threads
  • Author
    Posts
    • #114353
      calzadium.com
      Participant

      Dear Ladies and Gentlemen,

      I need to know how I can change the color of the registration form for sellers. Now it is barely visible on the page.

      Thank you very much for your help.

      Yours Sincerely

      Ricardo Trenado
      calzadium.com

    • #114420

      Hi, our registration form comes with its own structure.

      However, you can simply add your custom css to change the Registration Form color visibility or modification. Please make sure to add the css in your child theme,so you can keep them even after the update of the theme.

      Let me know If you need any help.

      Regards,

    • #114494
      calzadium.com
      Participant

      Dear abhirup,

      I understand that I must make some modification in the CSS, but I have nothing clear where I should do it, nor the code that I should use to change the color of the form.

      I await your information.

      Thank you very much for your help.

      Ricardo Trenado
      Calzadium.com

    • #114533

      Hi,
      You can add the css to your active theme style.css file but it will remove when you update the theme so create a child theme and then add the css to the style.css file.

      using below code you can change the heading color.

      body .wcmp_regi_main .reg_header1{
         color: #000000 !important;
      }
      Copy

      you have to add css like above code.
      Regards,

    • #114553
      calzadium.com
      Participant

      Dear Adhirup,

      With the inclusion of the code that you have indicated, the Title has changed. But what I need is to change the rest of the texts, and text boxes, because they are practically not appreciated. I mean I need to change the color of the contents of the form, as well as the title.

      Thank you very much for your help.

      Attached image.

      Ricardo Trenado
      Calzadium.com

    • #114598

      Hi,
      Please add this code in the function.php of the current active theme :
      Change the color as per your requirement.

      add_action('wp_head','add_custom_css');
      function add_custom_css(){?>
      <style>
       body .wcmp_regi_main .reg_header1{
         color: #000000 !important;
      }
      
       body .wcmp_regi_main .wcmp_regi_form_box label {
          color:#000000 !important;
      }
       body .wcmp_regi_form_box{
      	background-color: green !important; /*change as per your requirement*/
      }
      </style>
      <?php
      }
      Copy

      Regards,

    • #118731

      We have not received any update from you for a long. Hope this ticket is already been resolved.

      We are now closing this ticket. Kindly create a new one if you need any further help.

Viewing 6 reply threads

The topic ‘FORM COLOR VERY LIGHT’ is closed to new replies.