DEV Community

Cover image for How to make a custom file upload button with HTML, CSS, and JavaScript
Ayesha Sahar
Ayesha Sahar

Posted on • Updated on • Originally published at ayeshasahar.hashnode.dev

How to make a custom file upload button with HTML, CSS, and JavaScript

Table of Contents

Introduction

  1. Let's get started!
  2. HTML Code
  3. CSS Code
  4. JavaScript Code
  5. How it works!
  6. Full Code

Introduction

Recently, I was working on a project. One of the requirements was to create a customized file upload button. I had to make something like this:

image.png

I thought I'd easily find a detailed tutorial if I search a bit on Google but unfortunately, I didn't. It seems to be quite simple but I had to spend a lot of time to make it.

This article is a detailed tutorial on how to make it :)

Let's get started!

I'm gonna make this a beginner-friendly article, so, first of all, let's start with the basics. Create an HTML file, I've named it Index, you can name it anything. Now create a .css file. I've named it style.css following the convention. Since we're done with the HTML and CSS ones, let's make a .js file now. I've named it script.js, again, following the concention.

Now, set up your main tags such as < !DOCTYPE html >, < head >, < body > etc in your HTML file. Then we will connect our CSS and js file with the HTML file. I'm doing this early on because my experience states that it's better to be early. You might forget to make the connection later and spend hours trying to why your code isn't working🤦‍♀️

Connecting .css and .js file

Add the following line in the < head > tag of your HTML file to connect with the css file. Make sure that the .css, .html and .js files are all in the same folder.

<link rel="stylesheet" href="style.css">
Enter fullscreen mode Exit fullscreen mode

I'm also gonna add an icon on the browse for a file button. I'll use fontawesome for it. To do so, we gotta connect it. So, add the following link in the < head > tag as well.

<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
Enter fullscreen mode Exit fullscreen mode

Finally, this is what your < head > tag should look like:

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>File Upload Button</title>
    <link rel="stylesheet" href="style.css">
    <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
</head>
Enter fullscreen mode Exit fullscreen mode

Just before < body > tag is closed, add this line to connect the .js file:

<script src="script.js"></script>
Enter fullscreen mode Exit fullscreen mode

HTML Code

Let's play with some divs and classes, shall we?👀

First, make the main div under which all your content will be. Then add a class to it so that styling it is much easier.

<div class="up">

                    <!-- Code here -->

</div>
Enter fullscreen mode Exit fullscreen mode

From here onwards, I'll start to refer to the divs with their class name.

Now, we have to make 2 more divs inside the "up" div.

One would be where the name of the selected file would be shown. The second div would be for the browse file button.

So, here's the first div:

<div class="fileName">
          <a>NO FILE SELECTED</a>
        </div>
Enter fullscreen mode Exit fullscreen mode

The text in < a > would be the default text shown. Once the file is selected, its name would be shown in place of this default text (this is what we would use Js and jQuery for).

Here's the second div:

 <div class="file-search-button">
          <label for="file-upload" class="custom-file-upload">
            <i class="fa fa-search"></i> BROWSE FOR A FILE
          </label>
          <input id="file-upload" type="file"/>
 </div>
Enter fullscreen mode Exit fullscreen mode

The < label > tag is for the < input >. We gave the id "file-upload" to the < input >. Then, via using this id, we specified that the label was for this input only. This is a good practice and avoids confusion when you got a lot of < input > and < label > tags inside one < div >. In the < input > tag, we added type="file" to specify that this button can be used to upload anything (any kind of file like.png, .jpeg, .exe, .pdf etc).

" < i class="fa fa-search" >< /i >", by adding this, an icon indicating "search" would be added before our text.

Adding everything up, here's what we will get:

<body>

    <div class="up">

        <div class="fileName">
          <a>NO FILE SELECTED</a>
        </div>

        <div class="file-search-button">
          <label for="file-upload" class="custom-file-upload">
            <i class="fa fa-search"></i> BROWSE FOR A FILE
          </label>
          <input id="file-upload" type="file"/>
        </div>
    </div>


    <script src="script.js"></script>
</body>
Enter fullscreen mode Exit fullscreen mode

So, this is how things look at this point:

1.png


CSS Code

It looks quite plain, so let's style this :)

Add all the following code in the style.css file.

First of all, we will style the main div, "up". I want to place it in the center of the page so here's what I'll do:

.up{
    margin: 0 auto;
    text-align: center ;
    margin-top: 200px;
  }
Enter fullscreen mode Exit fullscreen mode

So, here is something really important. Take a look:

2.jpg

The text in the red circle is what is shown by default. Generally, this can't be styled. At least I couldn't do it. I couldn't change its placement and it looked really bad right next to a beautiful button.

I only wanted the text in the green circle to be shown. That text would be later replaced by the name of the file selected.

So, in order to make the text in red disappear, we do the following:

  input[type="file"] {
    display: none;
  }
Enter fullscreen mode Exit fullscreen mode

Since we're done with this, let's style the first div, "fileName".

  .fileName{
    margin-top: 20px;
    color: rgb(255, 255, 255);
    display: inline-block;
    padding:15px;
    border-radius: 25px;
    cursor: pointer;
    background-color: #737275;
    border: none;
    width: 220px;
  }
Enter fullscreen mode Exit fullscreen mode

Here, we have added some padding and colors, etc to make it look a bit similar in shape and styling to the browse file button.

To make sure, the 1st and second div have some space between them, we'll do this:

 .file-search-button{
    margin-top: 30px;
  }
Enter fullscreen mode Exit fullscreen mode

Now, we'll style the browse file button:

  .custom-file-upload {
    color: rgb(255, 255, 255);
    display: inline-block;
    padding:15px;
    border-radius: 25px;
    cursor: pointer;
    background-color: #7a166d;
    border: none;
  }
Enter fullscreen mode Exit fullscreen mode

This styling was some pretty basic stuff. Here's how it looks right now:

image.png

It's in the middle of the page and with the basic styling we did earlier, looks much better now :)


JavaScript Code

Add the following code in the script.js file.

const fileName = document.querySelector(".fileName");

const fileInput = document.querySelector("input[type=file]");
fileInput.addEventListener("change", function() {
    if (this.files && this.files[0]) {
        fileName.innerHTML = this.files[0].name;
    }
});

Enter fullscreen mode Exit fullscreen mode

It's pretty simple actually. We will first select the "query" via its class. Then we add an event listener that as soon as the button is clicked, the below-defined function would be called. What it does is that as soon as the button is clicked, the user is given the option to select a file. If no file is selected, no change would take place. But if a file is selected, the name would be stored in a variable and replace the default text!


How it works!

Let's see it in action ;)

This is our button:

image.png

When we click on the browse for a file button, this new window pops up. Select a file now.

image.png

And here we can see that it works😆

image.png


Full Code

You can either follow along while reading or get the full code from my Github.

Here's the link:

https://github.com/AyeshaSahar/Web-Development/tree/main/Custom%20File%20Upload%20Button


Let's connect!

Twitter

Github

Top comments (5)

Collapse
 
newbietothis profile image
Newbie

Hi Ayesha
Thank you for your code. This is the first time that I have found this site and am trying to navigate my way around. I found your code and am trying to implement it.

I have got so far as to display the buttons, be able to select the file, the file name shows up on the button once selected. But I would love you help to be able to complete the process, am I missing something? I do not know how to actually upload the file from here, is there something that I am missing that the file does not go anywhere? And can you please advise where the file that would be uploaded actually parks itself once uploaded.

Hope you can help me out, I have a lot of learning to do and have not used an "upload" button before.

Many thanks in advance for your help

Collapse
 
iayeshasahar profile image
Ayesha Sahar

Hey there, sorry for the late reply.

When you create a file upload button on a website, the selected file is sent to a server for processing. In order to handle file uploads, you'll need a server-side script or backend code that can receive and process the uploaded file. The server-side script could be written in a programming language like Python, PHP, Node.js, or any other language that your web server supports.

But in this case, we do not have a server side, we are just creating an upload button, generally, it should have been connected to a backend for storage but at that time when I wrote this article, my focus was just to create the client side.

Collapse
 
rolandixor profile image
Roland Taylor • Edited

Hey, not sure if you're aware, but you can style the codeblocks in your posts easily for different languages. Just use (for example)

```css
Enter fullscreen mode Exit fullscreen mode

for CSS

and

```html
Enter fullscreen mode Exit fullscreen mode

for HTML, and so on, as the opening of the codeblock.

Collapse
 
iayeshasahar profile image
Ayesha Sahar

I really wasn't aware of that. Thank you!

Collapse
 
iayeshasahar profile image
Ayesha Sahar • Edited

It wasn't working when I left out that JS part before.😑

Thank you so much! I'll make the changes and leave out the jQuery part, also change the js function to a simplified one!