Here is the filter itself with input , I just can’t change the size of the inputs, not at all

link to the layout of the filter

Please tell me what to do? normal editing of the css file is indispensable

  • Can you give an example of how you tried to fix the CSS style? - Maqsood
  • At the very least, you can open a css style file via FTP and edit form styles. - Maqsood
  • yes in the usual way, a little doper, but not to the end, it’s necessary to position it through position: absolute and put a picture on the label - reddyk

1 answer 1

You can specify a CSS style for input by class, id, or type (usually):

 input[type="text"], input.someClass, input#someID { border: 1px solid black; border-radius: 5px; width: someValue; //И дальше все что вам необходимо } 

There is an exception with checkbox and radio inputs: It is better not to use css with pseudo-classes, because there will be many problems in different browsers.

Use: iCheck