Hi,
If anyone else has a similar question – price input field has alg_open_price class, so you can style it with CSS like that:
input.alg_open_price { color: red !important; }
Alternatively, you can use Input style option in plugin’s “Frontend Options” settings section:
width: 75px; text-align: center; color: red;
As for the label – you can customize the Frontend template in plugin’s settings, so you can either add style directly to the template:
<label for="%input_id%" style="color:green;">Name Your Price</label> %open_price_input% %currency_symbol%
or add some class to the label:
<label for="%input_id%" class="my_open_price_label">Name Your Price</label> %open_price_input% %currency_symbol%
and then style it with custom CSS:
label.my_open_price_label { color: green !important; }