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