I am currently working on a wordpress website. Using woocommerce and this plugin called SMS Alert which allows to send OTP for Registration. This plugin has inserted extra field in my registration form with label 'Phone' and I've enabled dropdown list to select country code.
The problem is with the css.
<input type="tel" class="input-text phone-valid" name="billing_phone" id="reg_billing_phone" value="" placeholder="Enter Number Here" data-id="sa_intellinput_0" autocomplete="off" style="padding-left:1269px !important;">
The input field is very long because of the 'style' attribute in the code.
style="padding-left:1269px !important;"
And it's not going away. I want the padding-left to be 80px. I've tried the following:
1.
.page-id-2994 input#reg_billing_phone.input-text.phone-valid {
width: 515px;
padding-left: 80px !important;
}
Some Javascript as well from this link
Also, I am not able to find the css file for this in file manager.
How do I resolve this issue?