Page 1 of 1

How do I modify the Red X when you upload a file

Posted: 2020-10-29 15:45
by nycwebmaster
How to I get rid of the Red X when you upload a file? I want to use a Checkmark instead.

Image



What file do I modify?

Re: How do I modify the Red X when you upload a file

Posted: 2020-11-04 12:47
by sandro
put this code on top of your detailview-template:

Code: Select all

<style>
	div.pull-right.well.upload-toolbox > label {
		display:none!important;
	}
</style>
If you want to hide the checkbox as well:

Code: Select all

<style>
	div.pull-right.well.upload-toolbox > label, 
	div.pull-right.well.upload-toolbox > input[type='checkbox'] {
		display:none!important;
	}
</style>

Re: How do I modify the Red X when you upload a file

Posted: 2020-11-11 22:01
by nycwebmaster
I checked that code and unfortunately don't work. It hides the actual upload button.