Make a Simple and Modern Web UI Button in Photoshop

This beginner-level web/user interface design tutorial will walk you through the creation of a popular style of buttons that can be used in a variety of situations, such as in call-to-actions, common user tasks such as submitting a web form, and buying products from your e-store. In addition to the creation of the graphic in Photoshop, we will go over the HTML and CSS needed in order to make the design fully functional.

Preview

View Demo

Step 1: Create the Photoshop Document

Our button will be exactly 170px wide and 50px tall, but well make a bigger canvas (600x600px) so that we have some breathing room while we work (then we can just crop our work before saving it).

Create the Photoshop Document

Step 2: Create the Base Shape

Use the Rounded Rectangle Tool (U) set to Shape Layers and with a Radius of 5px to create a 170x50px rectangle.

Create the Photoshop Document

Step 3: Give the Base Shape a Layer Style

The appearance of the button will largely depend on its layer style. Doing it this way offers us flexibility for later when we want to change certain aspects of the buttons design, such as its color. In the Layers Panel, double-click the base shape layer to open the Layer Style dialog window.

Give the Base Shape a Layer Style

We will give this layer two layer effects: a Gradient Overlay and a Stroke. Thats it.

Gradient Overlay

  • Color Stop #1 Color: #2877ac, Location: 0%
  • Color Midpoint #1 Location: 40%
  • Color Stop #2 Color: #87bfe6, Location: 95%
  • Color Midpoint #2 Location: 40%
  • Color Stop #3 Color: #c2def1, Location: 100%

Gradient Overlay

Stroke

For the Stroke layer effect, we will use the darkest blue (#2877ac) that we used from the Gradient Overlay, which will create this nice blending at the bottom of the button.

Step 4: Giving the Button a Diagonal Line Pattern

Well give the button a diagonal line pattern. Well create the Photoshop pattern from scratch. To start, create a new 4x4px Photoshop document (Ctrl/Cmd + N).

Giving the Button a Diagonal Line Pattern

Use the Zoom Tool (Z) to zoom in close (4x4px is very hard to see without zooming in). Create a new layer and delete the default white Background layer.

Giving the Button a Diagonal Line Pattern

Use the Pencil Tool in the Tools Panel to draw a white diagonal line from the top-left corner to the bottom-right corner of the canvashold down Shift to create a perfectly straight line.

Giving the Button a Diagonal Line Pattern

Go to Edit > Define Pattern to save our diagonal line as a pattern.

Switch back to our main document. In the Layers Panel, Ctrl/Cmd + click on the Vector mask thumbnail of the Base Shape layer to load a selection around the shape of the button (choosing Select > Load Selection does the same thing).

Create a new layer on top of the base shape layer for our diagonal line pattern. Make sure that you keep the selection active. Fill the selected area with the pattern we created by going to Edit > Fill and choosing it in the Custom Pattern dropdown menu.

Giving the Button a Diagonal Line Pattern

We want to trim the edges of the diagonal pattern by 2px so that its not covering up the stroke and the thin horizontal highlight color on top (which comes from the Gradient Overlay). Choose Select > Modify, enter 2px for the Contract By option, invert your selection (Select > Inverse), make sure youre still on the diagonal pattern layer, and then just hit Delete to remove the selected area.

We want the lines to be subtle, so lets switch the Blend Mode of the diagonal line pattern layer to Soft Light and reduce the layers Opacity to 20%.

Step 5: Add the Text

Use the Horizontal Type Tool (T) to type the text of the button; I used Museo Slab 500 at 24pt with the text color set to white (#ffffff).

Add the Text

In the Layers Panel, double-click on the text layer to open up the Layer Style dialog window. Give it a drop shadow and set the color of the drop shadow to the darkest blue of our button (#2877ac).

Add the Text

Step 6: Add an Arrow

To denote an action (perhaps to symbolize moving forward or go to the Buy Now web page), lets add a simple icon on the button. Well take a quick shortcut here: Well use a custom shape that comes with Photoshop, instead of drawing it ourselves. Switch to the Custom Shape Tool (U) and, in the Options Bar, find the Arrow 2 shape in the Shape dropdown menu.

Add a Left Arrow

Draw the shape on the right side of the button; the dimension is 13x13px, which matches the height of the lowercase characters of our text.

Add a Left Arrow

Use the Move Tool (V) to make the necessary adjustments so that the text and arrow are horizontally and vertically centered within the button.

Add a Left Arrow

Step 7: Create the Hover State

Our button is done. However, we should create the design for the hover state of the button (i.e. how the button will look when the user hovers over it with their mouse).

Place all the layersexcept the backgroundin a layer group by selecting them in the Layers Panel and then pressing Ctrl/Cmd + G (or choosing Layer > Group Layers).

Create the Hover State

Duplicate the layer group, then move the duplicate layer groups content right below the original button.

Create the Hover State

Double-click the base shape layer copy (its inside the hover layer group) to open up the Layer Style dialog window. Modify the Gradient Overlay layer effect so that the gradient appears to be reversed. Checking the Reverse option could work for you, but I prefer manually tweaking the gradients color stops for better results.

  • Color Stop #1 Color: #87bfe6, Location: 0%
  • Midpoint #1 Location: 40%
  • Color Stop #2 Color: #2877ac, Location: 95%
  • Midpoint #2 Location: 40%
  • Color Stop #3 Color: #4c9fd7, Location: 100%

Create the Hover State

Create the Hover State

Step 8: Cropping and Saving

Create a selection around the two buttons using the Rectangular Marquee Tool (U); it must be precisely 170x100px because we will use these values in our CSS. What were creating here is called a CSS sprite; head over to my friend Chris Coyiers tutorial on CSS sprites to learn more about them.

Cropping and Saving

Once selected, go to Image > Crop.

Toggle off the visibility of the Background layer.

Go to File > Save for Web & Devices, choose PNG-8 with the Transparency option checked, then save it in the same folder/directory that you will be placing your HTML document into (in the next step). Save it as web_button.png.

Cropping and Saving

Step 9: HTML

Create an HTML document (perhaps named web_button.html) in the same folder/directory as your web button.

HTML

Open the HTML document in your favorite source code editor (even if its just your operating systems default text editor, like Microsoft Notepad).

The web button will be a link (<a>) with an id attribute of web_button. Place the following code inside your HTML document.


<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Web Button</title>
</head>
<body>
<a id="web_button" href="">Buy Now</a>
</body>
</html>

Preview the HTML document in a web browser; it will look pretty boring.

Step 10: CSS

Lets style the #web_button hyperlink so that it uses web_button.png as its background.

Note: The best practice for CSS is that it should be in an external style sheet, referenced using the <link> tag. But for the purpose of this tutorial, we will declare our styles inside <style> tags in our HTML document since having an external style sheet for one element seems like overkill. Please follow best practices if you are using this in production; just add the style rules to your websites main CSS file.

The explanation of how the CSS works is inline as comments. Please read the comments to see how the CSS works.


<style type="text/css">
#web_button {
    display: block;
    width: 170px;
    height: 50px;
    background: url(web_button.png) no-repeat 0 0;
    /* Hide "Buy now" text by moving it beyond
     * the browser viewport */
    text-indent: -9999px;
    /* Because of the outline:none property, we must visually style 
     * the :focus pseudo-class for keyboard users */
    outline: none;
}
/* :hover and :focus have the same style property */
a:hover#web_button, a:focus#web_button {
    /* -50px for the y-axis value of the background-position property
     * places the background on the bottom-half of the CSS sprite */
    background: url(web_button.png) no-repeat 0 -50px;
}
</style>

Preview the HTML document in a web browser, and check to make sure the :focus CSS pseudo-class has a visual representation; do this by pressing Tab repeatedly in your keyboard to navigate to the button, and making sure that it changes to our hover state when you are on the button.

Tutorial Summary

This tutorial showed you a quick and easy method for creating a flexible web UI button in Photoshop in a popular style that you see in many modern-themed websites and user interfaces. Experiment with the colors, gradients, and pattern to come up with a look thats entirely your own.

Please post a link to your work in the comments and include it in our Flickr group we would all love to see it!

View Demo

Download Source Files

Jacob Gube is the co-founder and a managing editor of Design Instruct. He's a web developer, and also the owner of Six Revisions. Follow Jacob on Twitter: @sixrevisions


Make a Simple and Modern Web UI Button in Photoshop
This beginner-level web/user interface design tutorial will walk you through the creation of a popular style of buttons that can be used in a variety of situations

How to Make a Modern UI Web Button Using Photoshop
How to Make a Modern UI Web Button Using Photoshop. Dec 24 2010 by Jacob Gube | 7 Comments. will show you how to create a slick web button in Photoshop,

Make a Simple and Modern Web UI Button in Photoshop ...
Join for free Log in

How to make a Flat and Modern Web UI Button in Photoshop?
This tutorial teaches you step by step how to make a flat and modern Web UI Button. a Flat and Modern Web UI Button in Photoshop? be very simple,

18 Detailed Photoshop UI Design Tutorials | Bashooka | Web ...
Here are 18 Detailed Photoshop UI Design Tutorials to a gorgeous and modern user interface button suitable for simple techniques we will create a

40 Free High-Quality Web Button PSD Downloads
check out these Photoshop tutorials: Make a Simple and Modern Web UI Button in Photoshop; How to Make a Modern UI Web Button Using Photoshop (Six Revisions)

Clipping Path Photoshop
Make a Simple and Modern Web UI Button in Photoshop http://ping.fm/yYCyK. Posted by Clipping Path at How to Create a Cool Glossy Button Using Photoshop

35+ Great Photoshop Button Tutorials - tripwire magazine
This tutorial will show you how to make a simple button in photoshop with some for your sites layout using Adobe Photoshop. Make simple modern ui button.

Designing a Web App UI Kit in Adobe Photoshop - Tuts+ ...
Style guide driven development offers a hugely flexible approach to modern web design. A simple web app user interface How to Make Your Own Button UI Kit with

20+ Amazing Web Design UI Elements Photoshop Tutorials ...
20+ Amazing Web Design UI Elements Photoshop Tutorials for creating stunning Web Design UI elements in Photoshop. Make a Simple and Modern Web UI Button in

Previous
Next Post »