Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author FixBD

    (@fixbd)

    Hi @mahitlasker

    Usually this is caused by your website CSS.

    Please, Add this CSS in your themes:

    .educare_results_form input {
       min-width: 100%;
    }

    Also, if you wish to fully change and use your custom CSS in educare search form and result card you can follow this files:
    https://github.com/FixBD/Educare/blob/FixBD/includes/support/educare-themes.php

    If you need to customize results card and search forms (structure):
    Please [Follow this topics](https://www.ads-software.com/support/topic/can-the-result-card-be-custom-designed)

    This is not a plugin problems. But, We will improve this issues after next update. Thanks for sharing these issue.

    Regards

    Thread Starter mahitlasker

    (@mahitlasker)

    can you specify the file name where have to add this code?

    Plugin Author FixBD

    (@fixbd)

    Hi @mahitlasker

    Please follow these simple steps –

    1. Go to your active theme directory and find functions.php files.
    In my case: C:\xampp\htdocs\wp-content\themes\AR
    In functions.php file, open it in your code editor and paste this code:

    function educare_my_custom_style() {
    	// Link Custom CSS Style
    	wp_enqueue_style( 'educare-custom-style', get_stylesheet_directory_uri() . '/assets/custom-style.css' );
    }
    
    // Add/Apply Custom Style
    add_action( 'wp_enqueue_scripts', 'educare_my_custom_style');

    2. In the same directory create a folder named assets.

    3. Open assets folder and create a file named custom-style.css, and past his (CSS) code:

    .educare_results_form input {
      display: block;
      min-width: 100%;
    }

    If you have any further questions, do not hesitate to ask.

    Regards

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘in front end, roll no. and reg no. field are too small.’ is closed to new replies.