a random operate banner

/operate/ - Endchan Operations

Let us know what's up


New Reply on thread #18264
X
Max 20 files0 B total
[New Reply]

[Index] [Catalog] [Banners] [Logs]
Posting mode: Reply [Return]


thumbnail of 1595945397926.jpg
thumbnail of 1595945397926.jpg
1595945397926 jpg
(44.22 KB, 564x423)
Greetings from VanHilton Media

Is it possible to get rid of the "drawing" and "password" fields? I'd prefer my board not have these. Just Name/Email/Subject/Comment/File(s) and nothing else.
 >>/18271/
You can select these particular elements you want to hide with the :nth-child(x) selector, where the x is the number of the element.
The elements of the form is in the table and the "Password" and "Drawing" fields are in the 5th and 6th table rows, or in the 4th and 5th if you force anonymity via your board's settings (ie. no "Name" field).
Then you can use display: none; css rule to hide elements (there are other options, if you prefer something else you can use that ofc);
Since no other table rows on the page you could use the following:

tr:nth-child(4), tr:nth-child(5) {
  display: none;
}

Or:

tr:nth-child(5), tr:nth-child(6) {
  display: none;
}

Depending on the Name field, as I wrote above. This is important, you don't want to hide captcha accidentally or something.

Post(s) action:


Moderation Help
Scope:
Duration: Days

Ban Type:


4 replies | 1 file
New Reply on thread #18264
Max 20 files0 B total