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

Got something cool to share with AppGini users? Feel free to post it here!
Post Reply
nycwebmaster
Veteran Member
Posts: 90
Joined: 2015-11-23 01:02

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

Post by nycwebmaster » 2020-10-29 15:45

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?

sandro
Posts: 2
Joined: 2020-10-29 13:13

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

Post by sandro » 2020-11-04 12:47

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>

nycwebmaster
Veteran Member
Posts: 90
Joined: 2015-11-23 01:02

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

Post by nycwebmaster » 2020-11-11 22:01

I checked that code and unfortunately don't work. It hides the actual upload button.

Post Reply