How to add tumblr get mail

To add a "Get Mail" button to your Tumblr blog, you'll need to follow these steps:

Method 1: Using the Tumblr Dashboard

  1. Log in to your Tumblr account and go to your dashboard.
  2. Click on the "Customize" button on the top right corner of your dashboard.
  3. Click on "Theme" and then select "Edit Theme".
  4. In the theme editor, click on the "Add a button" button.
  5. Select "Get Mail" from the list of available buttons.
  6. Customize the button's appearance and behavior as desired (e.g., change the text, icon, or link).
  7. Click "Save" to save your changes.

Method 2: Using HTML and CSS

  1. Log in to your Tumblr account and go to your dashboard.

  2. Click on the "Customize" button on the top right corner of your dashboard.

  3. Click on "Theme" and then select "Edit HTML".

  4. In the HTML editor, add the following code to your theme's HTML file:

    <a href="mailto:[email protected]" class="get-mail-button">Get Mail</a>

    Replace [email protected] with your actual email address.

  5. Add the following CSS code to your theme's CSS file to style the button:

    
    .get-mail-button {
    background-color: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    }

.get-mail-button:hover { background-color: #3e8e41; }


This will give your button a green background and white text.

6. Click "Save" to save your changes.

**Method 3: Using a Third-Party Plugin**

1. Search for a "Get Mail" plugin on the Tumblr plugin directory or a third-party plugin repository.
2. Install and configure the plugin according to the instructions provided.
3. The plugin should add a "Get Mail" button to your Tumblr blog.

Remember to replace `[email protected]` with your actual email address in all methods.