Simple Named Grid Areas

Post pobrano z: Simple Named Grid Areas

I think of named grid areas in CSS Grids as bring-your-own syntactic sugar. You don’t absolutely need them (you could express grid placement in other ways), but it can make that placement more intuitive. And, hey, if I’m wrong about that, correct me in the comments.

Say you set up a 3-column grid:

.grid {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 
     200px  1fr  1fr;
}

No rows defined there; those are implicit and will appear as needed. We could define them, we just aren’t, because like most situations in web design, we don’t care how tall the items are — the height will grow as needed to accomodate the content.

Now, how do we place something in that very top-left position in the grid? We could tell the grid to place it there like this:

.item {
  grid-column: 1 / 2; /* start at the first grid column line and end at the second */
}

That works, although that .item better be the first child of .grid. Otherwise, something else may implicitly be placed there and .item will kick down to the next open row. If we wanted to be super sure to place it in the top-left, we could do the row as well:

.item {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

Now it will be in the top-left for sure, even if other items are explicitly placed there (they’ll just overlap). We can even shorten things up with the grid-area property:

.item {
  grid-area: 1 / 1 / 2 / 2;
}

All those 1’s and 2’s might be intuitive enough for now, but the numbers become a bit much in more complex grids involving both column and row placement.

Check this. While we are defining the columns, we can name them with a separate property:

.grid {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: 
     200px  1fr  1fr;
  grid-template-areas:
    "pro    a    b"
    "pro    c    d";
}

Every quoted group in grid-template-areas is a row. Inside are names I just made up. Could be just about anything, as long as it makes sense to you. See how the word „pro” is repeated twice there on two rows? That’s important, as it’s saying that we could place a grid item where that value „pro” is and it will be in the first of three columns and span two rows. Pretty intuitive, yeah?

We place it like this:

.pro-features {
  /* rather than */
  grid-area: 1 / 1 / 2 / 3;
  /* we can now do */
  grid-area: pro;
}

Here’s that simple example:

See the Pen Simple Named Grid Areas by Chris Coyier (@chriscoyier) on CodePen.

Want to get even more descriptive with a grid? Try drawing it in your CSS comments.

The post Simple Named Grid Areas appeared first on CSS-Tricks.

How to Create a Cartoon Text Effect in Adobe Photoshop

Post pobrano z: How to Create a Cartoon Text Effect in Adobe Photoshop

Final product image
What You’ll Be Creating

In this tutorial I will show you how to create an easy cartoon text effect, using a pattern and a layer style. 

This cartoon text effect we will be creating is a part of Cartoon and Comic Book Styles from my Cartoon and Comic Book Collection.

Cartoon and Comic Book Styles
Cartoon and Comic Book Styles

Tutorial Assets

The following assets were used during this tutorial:

Before you start creating the cartoon text effect, download and install
the font and the pattern into your Photoshop, and also download the
background.

1. How to Load a Document Background

We will use the Stars background from the Tutorial Assets as our document background. It is an 850 x 600 px JPG file. Go to File > Open and open star-background.jpg.

Star Background

2. How to Create and Warp Text

This text effect is made of one layer, so you can save it as a new style in your Styles palette when you are done.

Step 1

Pick the Type Tool and select the Brady Bunch Remastered font. Set the Font Size around 212 pt. Write „SMASH!” with capital letters and with any color.

Type tool

Step 2

Now we need to stretch the letter spaces. Select the text layer, and then go to the Character panel and change the Tracking to -20. If you can’t see the character panel icon, go to Type > Panels > Character Panel.

Font tracking

Step 3

The last step before we start applying the layer style is to warp our text. Right-click with your mouse on the text layer and select Warp Text from the menu. Set the Style to Arc, select Horizontal, and set the Bend to 30% and Horizontal Distortion to -30%. Now hit OK to apply the changes.

Warp text

3. How to Create a Cartoon Text Effect

Step 1

Select the layer SMASH! and Double-click the layer to apply the following layer style:

Add a Stroke with these settings:

  • Size: 10 px
  • Position: Outside
  • Blend Mode: Normal
  • Opacity: 100%
  • Fill Type: Gradient
  • Style: Shape Burst
  • Angle:
  • Check the Dither box
  • Set the Gradient with these 2 color stops:
  • First gradient stop Color #f80000 and Location at 45%
  • Second gradient stop Color #000000 and Location at 59%
Add a Stroke

Step 2

Add an Inner Shadow with these settings:

  • Blend Mode: Normal with the Color #fff000
  • Opacity: 100%
  • Uncheck the Use Global Light before setting Angle: 180°
  • Distance: 3 px
  • Choke: 100%
  • Size: 0 px
  • Check the Anti-aliased box
Add an Inner Shadow

Step 3

Add a Satin effect with these settings:

  • Blend Mode: Normal with the Color #fff000
  • Opacity: 100%
  • Angle: 90°
  • Distance: 2 px
  • Size: 0 px
  • Check the Anti-aliased box
  • Uncheck the Invert box, if checked
Add a Satin

Step 4

Add a Color Overlay with these settings:

  • Blend Mode: Multiply
  • Click on the Color box and choose the color #fff000
  • Opacity: 100%
Add a Color Overlay

Step 5

Add a Pattern Overlay with these settings:

  • Click on the Pattern box and choose the Red Dots pattern
  • Opacity: 100%
  • Scale: 100%

Now you can change the pattern position: just Left-click and Drag your mouse over the text in the document to move the pattern up or down.

Add a Pattern Overlay

Step 6

Add an Outer Glow with these settings:

  • Blend Mode: Normal
  • Opacity: 100%
  • Set Color of glow #fff000
  • Technique: Softer
  • Spread: 94%
  • Size: 11 px
  • Check the Anti-aliased box
Add an Outer Glow

Step 7

As a final step, add a Drop Shadow with these settings:

  • Blend Mode: Multiply and pick the Color #000000
  • Opacity: 100%
  • Uncheck the Use Global Light before setting Angle: 120°
  • Distance: 8 px
  • Spread: 100%
  • Size: 20 px
  • Check the Anti-aliased box

Hit OK to apply the layer style.

Add a Drop Shadow

Congratulations! You’re Done!

In this tutorial, you learned how to create a cartoon text effect in Adobe Photoshop.

We
started out by creating and warping our text, and then we added multiple different effects in order
to create our final text effect.

Final Result

I hope you’ve enjoyed
this tutorial, and if you like the final effect, don’t forget to save
this style to your Layer Styles palette for future projects.

This text effect we just created is a part of Cartoon and Comic Book Styles.

Cartoon and Comic Book Styles
Cartoon and Comic Book Styles

How to Create a Cartoon Text Effect in Adobe Photoshop

Post pobrano z: How to Create a Cartoon Text Effect in Adobe Photoshop

Final product image
What You’ll Be Creating

In this tutorial I will show you how to create an easy cartoon text effect, using a pattern and a layer style. 

This cartoon text effect we will be creating is a part of Cartoon and Comic Book Styles from my Cartoon and Comic Book Collection.

Cartoon and Comic Book Styles
Cartoon and Comic Book Styles

Tutorial Assets

The following assets were used during this tutorial:

Before you start creating the cartoon text effect, download and install
the font and the pattern into your Photoshop, and also download the
background.

1. How to Load a Document Background

We will use the Stars background from the Tutorial Assets as our document background. It is an 850 x 600 px JPG file. Go to File > Open and open star-background.jpg.

Star Background

2. How to Create and Warp Text

This text effect is made of one layer, so you can save it as a new style in your Styles palette when you are done.

Step 1

Pick the Type Tool and select the Brady Bunch Remastered font. Set the Font Size around 212 pt. Write „SMASH!” with capital letters and with any color.

Type tool

Step 2

Now we need to stretch the letter spaces. Select the text layer, and then go to the Character panel and change the Tracking to -20. If you can’t see the character panel icon, go to Type > Panels > Character Panel.

Font tracking

Step 3

The last step before we start applying the layer style is to warp our text. Right-click with your mouse on the text layer and select Warp Text from the menu. Set the Style to Arc, select Horizontal, and set the Bend to 30% and Horizontal Distortion to -30%. Now hit OK to apply the changes.

Warp text

3. How to Create a Cartoon Text Effect

Step 1

Select the layer SMASH! and Double-click the layer to apply the following layer style:

Add a Stroke with these settings:

  • Size: 10 px
  • Position: Outside
  • Blend Mode: Normal
  • Opacity: 100%
  • Fill Type: Gradient
  • Style: Shape Burst
  • Angle:
  • Check the Dither box
  • Set the Gradient with these 2 color stops:
  • First gradient stop Color #f80000 and Location at 45%
  • Second gradient stop Color #000000 and Location at 59%
Add a Stroke

Step 2

Add an Inner Shadow with these settings:

  • Blend Mode: Normal with the Color #fff000
  • Opacity: 100%
  • Uncheck the Use Global Light before setting Angle: 180°
  • Distance: 3 px
  • Choke: 100%
  • Size: 0 px
  • Check the Anti-aliased box
Add an Inner Shadow

Step 3

Add a Satin effect with these settings:

  • Blend Mode: Normal with the Color #fff000
  • Opacity: 100%
  • Angle: 90°
  • Distance: 2 px
  • Size: 0 px
  • Check the Anti-aliased box
  • Uncheck the Invert box, if checked
Add a Satin

Step 4

Add a Color Overlay with these settings:

  • Blend Mode: Multiply
  • Click on the Color box and choose the color #fff000
  • Opacity: 100%
Add a Color Overlay

Step 5

Add a Pattern Overlay with these settings:

  • Click on the Pattern box and choose the Red Dots pattern
  • Opacity: 100%
  • Scale: 100%

Now you can change the pattern position: just Left-click and Drag your mouse over the text in the document to move the pattern up or down.

Add a Pattern Overlay

Step 6

Add an Outer Glow with these settings:

  • Blend Mode: Normal
  • Opacity: 100%
  • Set Color of glow #fff000
  • Technique: Softer
  • Spread: 94%
  • Size: 11 px
  • Check the Anti-aliased box
Add an Outer Glow

Step 7

As a final step, add a Drop Shadow with these settings:

  • Blend Mode: Multiply and pick the Color #000000
  • Opacity: 100%
  • Uncheck the Use Global Light before setting Angle: 120°
  • Distance: 8 px
  • Spread: 100%
  • Size: 20 px
  • Check the Anti-aliased box

Hit OK to apply the layer style.

Add a Drop Shadow

Congratulations! You’re Done!

In this tutorial, you learned how to create a cartoon text effect in Adobe Photoshop.

We
started out by creating and warping our text, and then we added multiple different effects in order
to create our final text effect.

Final Result

I hope you’ve enjoyed
this tutorial, and if you like the final effect, don’t forget to save
this style to your Layer Styles palette for future projects.

This text effect we just created is a part of Cartoon and Comic Book Styles.

Cartoon and Comic Book Styles
Cartoon and Comic Book Styles

How to Create a Cartoon Text Effect in Adobe Photoshop

Post pobrano z: How to Create a Cartoon Text Effect in Adobe Photoshop

Final product image
What You’ll Be Creating

In this tutorial I will show you how to create an easy cartoon text effect, using a pattern and a layer style. 

This cartoon text effect we will be creating is a part of Cartoon and Comic Book Styles from my Cartoon and Comic Book Collection.

Cartoon and Comic Book Styles
Cartoon and Comic Book Styles

Tutorial Assets

The following assets were used during this tutorial:

Before you start creating the cartoon text effect, download and install
the font and the pattern into your Photoshop, and also download the
background.

1. How to Load a Document Background

We will use the Stars background from the Tutorial Assets as our document background. It is an 850 x 600 px JPG file. Go to File > Open and open star-background.jpg.

Star Background

2. How to Create and Warp Text

This text effect is made of one layer, so you can save it as a new style in your Styles palette when you are done.

Step 1

Pick the Type Tool and select the Brady Bunch Remastered font. Set the Font Size around 212 pt. Write „SMASH!” with capital letters and with any color.

Type tool

Step 2

Now we need to stretch the letter spaces. Select the text layer, and then go to the Character panel and change the Tracking to -20. If you can’t see the character panel icon, go to Type > Panels > Character Panel.

Font tracking

Step 3

The last step before we start applying the layer style is to warp our text. Right-click with your mouse on the text layer and select Warp Text from the menu. Set the Style to Arc, select Horizontal, and set the Bend to 30% and Horizontal Distortion to -30%. Now hit OK to apply the changes.

Warp text

3. How to Create a Cartoon Text Effect

Step 1

Select the layer SMASH! and Double-click the layer to apply the following layer style:

Add a Stroke with these settings:

  • Size: 10 px
  • Position: Outside
  • Blend Mode: Normal
  • Opacity: 100%
  • Fill Type: Gradient
  • Style: Shape Burst
  • Angle:
  • Check the Dither box
  • Set the Gradient with these 2 color stops:
  • First gradient stop Color #f80000 and Location at 45%
  • Second gradient stop Color #000000 and Location at 59%
Add a Stroke

Step 2

Add an Inner Shadow with these settings:

  • Blend Mode: Normal with the Color #fff000
  • Opacity: 100%
  • Uncheck the Use Global Light before setting Angle: 180°
  • Distance: 3 px
  • Choke: 100%
  • Size: 0 px
  • Check the Anti-aliased box
Add an Inner Shadow

Step 3

Add a Satin effect with these settings:

  • Blend Mode: Normal with the Color #fff000
  • Opacity: 100%
  • Angle: 90°
  • Distance: 2 px
  • Size: 0 px
  • Check the Anti-aliased box
  • Uncheck the Invert box, if checked
Add a Satin

Step 4

Add a Color Overlay with these settings:

  • Blend Mode: Multiply
  • Click on the Color box and choose the color #fff000
  • Opacity: 100%
Add a Color Overlay

Step 5

Add a Pattern Overlay with these settings:

  • Click on the Pattern box and choose the Red Dots pattern
  • Opacity: 100%
  • Scale: 100%

Now you can change the pattern position: just Left-click and Drag your mouse over the text in the document to move the pattern up or down.

Add a Pattern Overlay

Step 6

Add an Outer Glow with these settings:

  • Blend Mode: Normal
  • Opacity: 100%
  • Set Color of glow #fff000
  • Technique: Softer
  • Spread: 94%
  • Size: 11 px
  • Check the Anti-aliased box
Add an Outer Glow

Step 7

As a final step, add a Drop Shadow with these settings:

  • Blend Mode: Multiply and pick the Color #000000
  • Opacity: 100%
  • Uncheck the Use Global Light before setting Angle: 120°
  • Distance: 8 px
  • Spread: 100%
  • Size: 20 px
  • Check the Anti-aliased box

Hit OK to apply the layer style.

Add a Drop Shadow

Congratulations! You’re Done!

In this tutorial, you learned how to create a cartoon text effect in Adobe Photoshop.

We
started out by creating and warping our text, and then we added multiple different effects in order
to create our final text effect.

Final Result

I hope you’ve enjoyed
this tutorial, and if you like the final effect, don’t forget to save
this style to your Layer Styles palette for future projects.

This text effect we just created is a part of Cartoon and Comic Book Styles.

Cartoon and Comic Book Styles
Cartoon and Comic Book Styles

How to Create a Cartoon Text Effect in Adobe Photoshop

Post pobrano z: How to Create a Cartoon Text Effect in Adobe Photoshop

Final product image
What You’ll Be Creating

In this tutorial I will show you how to create an easy cartoon text effect, using a pattern and a layer style. 

This cartoon text effect we will be creating is a part of Cartoon and Comic Book Styles from my Cartoon and Comic Book Collection.

Cartoon and Comic Book Styles
Cartoon and Comic Book Styles

Tutorial Assets

The following assets were used during this tutorial:

Before you start creating the cartoon text effect, download and install
the font and the pattern into your Photoshop, and also download the
background.

1. How to Load a Document Background

We will use the Stars background from the Tutorial Assets as our document background. It is an 850 x 600 px JPG file. Go to File > Open and open star-background.jpg.

Star Background

2. How to Create and Warp Text

This text effect is made of one layer, so you can save it as a new style in your Styles palette when you are done.

Step 1

Pick the Type Tool and select the Brady Bunch Remastered font. Set the Font Size around 212 pt. Write „SMASH!” with capital letters and with any color.

Type tool

Step 2

Now we need to stretch the letter spaces. Select the text layer, and then go to the Character panel and change the Tracking to -20. If you can’t see the character panel icon, go to Type > Panels > Character Panel.

Font tracking

Step 3

The last step before we start applying the layer style is to warp our text. Right-click with your mouse on the text layer and select Warp Text from the menu. Set the Style to Arc, select Horizontal, and set the Bend to 30% and Horizontal Distortion to -30%. Now hit OK to apply the changes.

Warp text

3. How to Create a Cartoon Text Effect

Step 1

Select the layer SMASH! and Double-click the layer to apply the following layer style:

Add a Stroke with these settings:

  • Size: 10 px
  • Position: Outside
  • Blend Mode: Normal
  • Opacity: 100%
  • Fill Type: Gradient
  • Style: Shape Burst
  • Angle:
  • Check the Dither box
  • Set the Gradient with these 2 color stops:
  • First gradient stop Color #f80000 and Location at 45%
  • Second gradient stop Color #000000 and Location at 59%
Add a Stroke

Step 2

Add an Inner Shadow with these settings:

  • Blend Mode: Normal with the Color #fff000
  • Opacity: 100%
  • Uncheck the Use Global Light before setting Angle: 180°
  • Distance: 3 px
  • Choke: 100%
  • Size: 0 px
  • Check the Anti-aliased box
Add an Inner Shadow

Step 3

Add a Satin effect with these settings:

  • Blend Mode: Normal with the Color #fff000
  • Opacity: 100%
  • Angle: 90°
  • Distance: 2 px
  • Size: 0 px
  • Check the Anti-aliased box
  • Uncheck the Invert box, if checked
Add a Satin

Step 4

Add a Color Overlay with these settings:

  • Blend Mode: Multiply
  • Click on the Color box and choose the color #fff000
  • Opacity: 100%
Add a Color Overlay

Step 5

Add a Pattern Overlay with these settings:

  • Click on the Pattern box and choose the Red Dots pattern
  • Opacity: 100%
  • Scale: 100%

Now you can change the pattern position: just Left-click and Drag your mouse over the text in the document to move the pattern up or down.

Add a Pattern Overlay

Step 6

Add an Outer Glow with these settings:

  • Blend Mode: Normal
  • Opacity: 100%
  • Set Color of glow #fff000
  • Technique: Softer
  • Spread: 94%
  • Size: 11 px
  • Check the Anti-aliased box
Add an Outer Glow

Step 7

As a final step, add a Drop Shadow with these settings:

  • Blend Mode: Multiply and pick the Color #000000
  • Opacity: 100%
  • Uncheck the Use Global Light before setting Angle: 120°
  • Distance: 8 px
  • Spread: 100%
  • Size: 20 px
  • Check the Anti-aliased box

Hit OK to apply the layer style.

Add a Drop Shadow

Congratulations! You’re Done!

In this tutorial, you learned how to create a cartoon text effect in Adobe Photoshop.

We
started out by creating and warping our text, and then we added multiple different effects in order
to create our final text effect.

Final Result

I hope you’ve enjoyed
this tutorial, and if you like the final effect, don’t forget to save
this style to your Layer Styles palette for future projects.

This text effect we just created is a part of Cartoon and Comic Book Styles.

Cartoon and Comic Book Styles
Cartoon and Comic Book Styles

How to Create a Cartoon Text Effect in Adobe Photoshop

Post pobrano z: How to Create a Cartoon Text Effect in Adobe Photoshop

Final product image
What You’ll Be Creating

In this tutorial I will show you how to create an easy cartoon text effect, using a pattern and a layer style. 

This cartoon text effect we will be creating is a part of Cartoon and Comic Book Styles from my Cartoon and Comic Book Collection.

Cartoon and Comic Book Styles
Cartoon and Comic Book Styles

Tutorial Assets

The following assets were used during this tutorial:

Before you start creating the cartoon text effect, download and install
the font and the pattern into your Photoshop, and also download the
background.

1. How to Load a Document Background

We will use the Stars background from the Tutorial Assets as our document background. It is an 850 x 600 px JPG file. Go to File > Open and open star-background.jpg.

Star Background

2. How to Create and Warp Text

This text effect is made of one layer, so you can save it as a new style in your Styles palette when you are done.

Step 1

Pick the Type Tool and select the Brady Bunch Remastered font. Set the Font Size around 212 pt. Write „SMASH!” with capital letters and with any color.

Type tool

Step 2

Now we need to stretch the letter spaces. Select the text layer, and then go to the Character panel and change the Tracking to -20. If you can’t see the character panel icon, go to Type > Panels > Character Panel.

Font tracking

Step 3

The last step before we start applying the layer style is to warp our text. Right-click with your mouse on the text layer and select Warp Text from the menu. Set the Style to Arc, select Horizontal, and set the Bend to 30% and Horizontal Distortion to -30%. Now hit OK to apply the changes.

Warp text

3. How to Create a Cartoon Text Effect

Step 1

Select the layer SMASH! and Double-click the layer to apply the following layer style:

Add a Stroke with these settings:

  • Size: 10 px
  • Position: Outside
  • Blend Mode: Normal
  • Opacity: 100%
  • Fill Type: Gradient
  • Style: Shape Burst
  • Angle:
  • Check the Dither box
  • Set the Gradient with these 2 color stops:
  • First gradient stop Color #f80000 and Location at 45%
  • Second gradient stop Color #000000 and Location at 59%
Add a Stroke

Step 2

Add an Inner Shadow with these settings:

  • Blend Mode: Normal with the Color #fff000
  • Opacity: 100%
  • Uncheck the Use Global Light before setting Angle: 180°
  • Distance: 3 px
  • Choke: 100%
  • Size: 0 px
  • Check the Anti-aliased box
Add an Inner Shadow

Step 3

Add a Satin effect with these settings:

  • Blend Mode: Normal with the Color #fff000
  • Opacity: 100%
  • Angle: 90°
  • Distance: 2 px
  • Size: 0 px
  • Check the Anti-aliased box
  • Uncheck the Invert box, if checked
Add a Satin

Step 4

Add a Color Overlay with these settings:

  • Blend Mode: Multiply
  • Click on the Color box and choose the color #fff000
  • Opacity: 100%
Add a Color Overlay

Step 5

Add a Pattern Overlay with these settings:

  • Click on the Pattern box and choose the Red Dots pattern
  • Opacity: 100%
  • Scale: 100%

Now you can change the pattern position: just Left-click and Drag your mouse over the text in the document to move the pattern up or down.

Add a Pattern Overlay

Step 6

Add an Outer Glow with these settings:

  • Blend Mode: Normal
  • Opacity: 100%
  • Set Color of glow #fff000
  • Technique: Softer
  • Spread: 94%
  • Size: 11 px
  • Check the Anti-aliased box
Add an Outer Glow

Step 7

As a final step, add a Drop Shadow with these settings:

  • Blend Mode: Multiply and pick the Color #000000
  • Opacity: 100%
  • Uncheck the Use Global Light before setting Angle: 120°
  • Distance: 8 px
  • Spread: 100%
  • Size: 20 px
  • Check the Anti-aliased box

Hit OK to apply the layer style.

Add a Drop Shadow

Congratulations! You’re Done!

In this tutorial, you learned how to create a cartoon text effect in Adobe Photoshop.

We
started out by creating and warping our text, and then we added multiple different effects in order
to create our final text effect.

Final Result

I hope you’ve enjoyed
this tutorial, and if you like the final effect, don’t forget to save
this style to your Layer Styles palette for future projects.

This text effect we just created is a part of Cartoon and Comic Book Styles.

Cartoon and Comic Book Styles
Cartoon and Comic Book Styles

How to Create a Cartoon Text Effect in Adobe Photoshop

Post pobrano z: How to Create a Cartoon Text Effect in Adobe Photoshop

Final product image
What You’ll Be Creating

In this tutorial I will show you how to create an easy cartoon text effect, using a pattern and a layer style. 

This cartoon text effect we will be creating is a part of Cartoon and Comic Book Styles from my Cartoon and Comic Book Collection.

Cartoon and Comic Book Styles
Cartoon and Comic Book Styles

Tutorial Assets

The following assets were used during this tutorial:

Before you start creating the cartoon text effect, download and install
the font and the pattern into your Photoshop, and also download the
background.

1. How to Load a Document Background

We will use the Stars background from the Tutorial Assets as our document background. It is an 850 x 600 px JPG file. Go to File > Open and open star-background.jpg.

Star Background

2. How to Create and Warp Text

This text effect is made of one layer, so you can save it as a new style in your Styles palette when you are done.

Step 1

Pick the Type Tool and select the Brady Bunch Remastered font. Set the Font Size around 212 pt. Write „SMASH!” with capital letters and with any color.

Type tool

Step 2

Now we need to stretch the letter spaces. Select the text layer, and then go to the Character panel and change the Tracking to -20. If you can’t see the character panel icon, go to Type > Panels > Character Panel.

Font tracking

Step 3

The last step before we start applying the layer style is to warp our text. Right-click with your mouse on the text layer and select Warp Text from the menu. Set the Style to Arc, select Horizontal, and set the Bend to 30% and Horizontal Distortion to -30%. Now hit OK to apply the changes.

Warp text

3. How to Create a Cartoon Text Effect

Step 1

Select the layer SMASH! and Double-click the layer to apply the following layer style:

Add a Stroke with these settings:

  • Size: 10 px
  • Position: Outside
  • Blend Mode: Normal
  • Opacity: 100%
  • Fill Type: Gradient
  • Style: Shape Burst
  • Angle:
  • Check the Dither box
  • Set the Gradient with these 2 color stops:
  • First gradient stop Color #f80000 and Location at 45%
  • Second gradient stop Color #000000 and Location at 59%
Add a Stroke

Step 2

Add an Inner Shadow with these settings:

  • Blend Mode: Normal with the Color #fff000
  • Opacity: 100%
  • Uncheck the Use Global Light before setting Angle: 180°
  • Distance: 3 px
  • Choke: 100%
  • Size: 0 px
  • Check the Anti-aliased box
Add an Inner Shadow

Step 3

Add a Satin effect with these settings:

  • Blend Mode: Normal with the Color #fff000
  • Opacity: 100%
  • Angle: 90°
  • Distance: 2 px
  • Size: 0 px
  • Check the Anti-aliased box
  • Uncheck the Invert box, if checked
Add a Satin

Step 4

Add a Color Overlay with these settings:

  • Blend Mode: Multiply
  • Click on the Color box and choose the color #fff000
  • Opacity: 100%
Add a Color Overlay

Step 5

Add a Pattern Overlay with these settings:

  • Click on the Pattern box and choose the Red Dots pattern
  • Opacity: 100%
  • Scale: 100%

Now you can change the pattern position: just Left-click and Drag your mouse over the text in the document to move the pattern up or down.

Add a Pattern Overlay

Step 6

Add an Outer Glow with these settings:

  • Blend Mode: Normal
  • Opacity: 100%
  • Set Color of glow #fff000
  • Technique: Softer
  • Spread: 94%
  • Size: 11 px
  • Check the Anti-aliased box
Add an Outer Glow

Step 7

As a final step, add a Drop Shadow with these settings:

  • Blend Mode: Multiply and pick the Color #000000
  • Opacity: 100%
  • Uncheck the Use Global Light before setting Angle: 120°
  • Distance: 8 px
  • Spread: 100%
  • Size: 20 px
  • Check the Anti-aliased box

Hit OK to apply the layer style.

Add a Drop Shadow

Congratulations! You’re Done!

In this tutorial, you learned how to create a cartoon text effect in Adobe Photoshop.

We
started out by creating and warping our text, and then we added multiple different effects in order
to create our final text effect.

Final Result

I hope you’ve enjoyed
this tutorial, and if you like the final effect, don’t forget to save
this style to your Layer Styles palette for future projects.

This text effect we just created is a part of Cartoon and Comic Book Styles.

Cartoon and Comic Book Styles
Cartoon and Comic Book Styles

How to Draw a Sugar Skull

Post pobrano z: How to Draw a Sugar Skull

Final product image
What You’ll Be Creating

Sugar skulls are traditional decorative skulls created for the celebration of Día de Muertos—the Mexican Day of the Dead holiday. It’s believed that on November 1 and 2 the souls of the deceased come down to reunite with their loved ones. To celebrate, families create special altars for remembrance of the lost members and decorate them with flowers, candles, food, and little ornamented skulls made of sugar or clay—one skull for each loved one.

Because of their distinctive look, sugar skulls have become an unofficial symbol of the holiday, and as such can be created in various mediums—sculpted, painted, drawn, and even used as a special make-up during the celebration.

Drawing a sugar skull is simple and relaxing. In this tutorial I will show you how to draw a sugar skull step by step, but you don’t have to follow my instructions strictly—feel free to decorate it your own way!

How to Draw a Sugar Skull

Step 1

First you need some kind of a template of a skull. It could be a photo of a real skull or a drawing. Feel free to use an illustration from my tutorial How to Draw a Skull. If you’re drawing digitally, just place it as a layer with low opacity. If you’re drawing traditionally, trace the skull to a new sheet of paper with a pencil. Do it lightly, so that you can erase these lines later.

sugar drawing template

Step 2

Draw the basic outline of your skull with ink or another dark tool. Sugar skulls tend to be heavily stylized, so feel free to modify the shape as a part of your style.

simple outline of sugar skull

Step 3

Thick outlines are a good way to accentuate a shape. Give the eye sockets a flower-like edge, and outline the nose.

how to decorate eye sockets sugar skull

Step 4

Decorate the borders of the eye sockets with dots to make them less empty.

add dots around eye sockets

Step 5

Flowers are a very popular way to decorate a sugar skull! Let’s add some flowers then. Start with a round center.

how to draw a flower

Step 6

To draw the petals in a regular way, first draw the borders between them.

draw borders between petals

Step 7

Turn slightly towards the middle of the planned petal to sketch its shape.

draw shape of petals

Step 8

„Close” the petals by adding a ragged edge.

finish the petals

Step 9

Decorate the petals a little.

decorate petals

Step 10

Add some darkness to create an appealing contrast.

draw flowers on sugar skull

Step 11

Outline the teeth now. Again, no need to draw them realistically. You can draw them as a row of rectangles, or like a simple zip.

draw teeth on sugar skull

Step 12

There’s a lot of empty space between the elements we already have. Let’s fill it with ornaments.

draw leaves on sugar skull

Step 13

Any space left? Let’s add some new shapes:

draw shapes on sugar skull
decorate sugar skull

Step 14

Finally, erase/remove the guide lines of the skull, and clean up the lines. Even a simple decoration will look intricate if you add some variety in the thickness of the lines.

draw sugar skull in ink

Good Job!

Now you know how to draw a sugar skull! If you followed this tutorial, please share your end result in the comments—we’d love to see it!

If you want to try other tutorials about sugar skulls, we have something for you:

And if you found this tutorial pleasantly relaxing, you can find similar ones here:

how to draw a sugar skull

How to Draw a Sugar Skull

Post pobrano z: How to Draw a Sugar Skull

Final product image
What You’ll Be Creating

Sugar skulls are traditional decorative skulls created for the celebration of Día de Muertos—the Mexican Day of the Dead holiday. It’s believed that on November 1 and 2 the souls of the deceased come down to reunite with their loved ones. To celebrate, families create special altars for remembrance of the lost members and decorate them with flowers, candles, food, and little ornamented skulls made of sugar or clay—one skull for each loved one.

Because of their distinctive look, sugar skulls have become an unofficial symbol of the holiday, and as such can be created in various mediums—sculpted, painted, drawn, and even used as a special make-up during the celebration.

Drawing a sugar skull is simple and relaxing. In this tutorial I will show you how to draw a sugar skull step by step, but you don’t have to follow my instructions strictly—feel free to decorate it your own way!

How to Draw a Sugar Skull

Step 1

First you need some kind of a template of a skull. It could be a photo of a real skull or a drawing. Feel free to use an illustration from my tutorial How to Draw a Skull. If you’re drawing digitally, just place it as a layer with low opacity. If you’re drawing traditionally, trace the skull to a new sheet of paper with a pencil. Do it lightly, so that you can erase these lines later.

sugar drawing template

Step 2

Draw the basic outline of your skull with ink or another dark tool. Sugar skulls tend to be heavily stylized, so feel free to modify the shape as a part of your style.

simple outline of sugar skull

Step 3

Thick outlines are a good way to accentuate a shape. Give the eye sockets a flower-like edge, and outline the nose.

how to decorate eye sockets sugar skull

Step 4

Decorate the borders of the eye sockets with dots to make them less empty.

add dots around eye sockets

Step 5

Flowers are a very popular way to decorate a sugar skull! Let’s add some flowers then. Start with a round center.

how to draw a flower

Step 6

To draw the petals in a regular way, first draw the borders between them.

draw borders between petals

Step 7

Turn slightly towards the middle of the planned petal to sketch its shape.

draw shape of petals

Step 8

„Close” the petals by adding a ragged edge.

finish the petals

Step 9

Decorate the petals a little.

decorate petals

Step 10

Add some darkness to create an appealing contrast.

draw flowers on sugar skull

Step 11

Outline the teeth now. Again, no need to draw them realistically. You can draw them as a row of rectangles, or like a simple zip.

draw teeth on sugar skull

Step 12

There’s a lot of empty space between the elements we already have. Let’s fill it with ornaments.

draw leaves on sugar skull

Step 13

Any space left? Let’s add some new shapes:

draw shapes on sugar skull
decorate sugar skull

Step 14

Finally, erase/remove the guide lines of the skull, and clean up the lines. Even a simple decoration will look intricate if you add some variety in the thickness of the lines.

draw sugar skull in ink

Good Job!

Now you know how to draw a sugar skull! If you followed this tutorial, please share your end result in the comments—we’d love to see it!

If you want to try other tutorials about sugar skulls, we have something for you:

And if you found this tutorial pleasantly relaxing, you can find similar ones here:

how to draw a sugar skull

How to Draw a Sugar Skull

Post pobrano z: How to Draw a Sugar Skull

Final product image
What You’ll Be Creating

Sugar skulls are traditional decorative skulls created for the celebration of Día de Muertos—the Mexican Day of the Dead holiday. It’s believed that on November 1 and 2 the souls of the deceased come down to reunite with their loved ones. To celebrate, families create special altars for remembrance of the lost members and decorate them with flowers, candles, food, and little ornamented skulls made of sugar or clay—one skull for each loved one.

Because of their distinctive look, sugar skulls have become an unofficial symbol of the holiday, and as such can be created in various mediums—sculpted, painted, drawn, and even used as a special make-up during the celebration.

Drawing a sugar skull is simple and relaxing. In this tutorial I will show you how to draw a sugar skull step by step, but you don’t have to follow my instructions strictly—feel free to decorate it your own way!

How to Draw a Sugar Skull

Step 1

First you need some kind of a template of a skull. It could be a photo of a real skull or a drawing. Feel free to use an illustration from my tutorial How to Draw a Skull. If you’re drawing digitally, just place it as a layer with low opacity. If you’re drawing traditionally, trace the skull to a new sheet of paper with a pencil. Do it lightly, so that you can erase these lines later.

sugar drawing template

Step 2

Draw the basic outline of your skull with ink or another dark tool. Sugar skulls tend to be heavily stylized, so feel free to modify the shape as a part of your style.

simple outline of sugar skull

Step 3

Thick outlines are a good way to accentuate a shape. Give the eye sockets a flower-like edge, and outline the nose.

how to decorate eye sockets sugar skull

Step 4

Decorate the borders of the eye sockets with dots to make them less empty.

add dots around eye sockets

Step 5

Flowers are a very popular way to decorate a sugar skull! Let’s add some flowers then. Start with a round center.

how to draw a flower

Step 6

To draw the petals in a regular way, first draw the borders between them.

draw borders between petals

Step 7

Turn slightly towards the middle of the planned petal to sketch its shape.

draw shape of petals

Step 8

„Close” the petals by adding a ragged edge.

finish the petals

Step 9

Decorate the petals a little.

decorate petals

Step 10

Add some darkness to create an appealing contrast.

draw flowers on sugar skull

Step 11

Outline the teeth now. Again, no need to draw them realistically. You can draw them as a row of rectangles, or like a simple zip.

draw teeth on sugar skull

Step 12

There’s a lot of empty space between the elements we already have. Let’s fill it with ornaments.

draw leaves on sugar skull

Step 13

Any space left? Let’s add some new shapes:

draw shapes on sugar skull
decorate sugar skull

Step 14

Finally, erase/remove the guide lines of the skull, and clean up the lines. Even a simple decoration will look intricate if you add some variety in the thickness of the lines.

draw sugar skull in ink

Good Job!

Now you know how to draw a sugar skull! If you followed this tutorial, please share your end result in the comments—we’d love to see it!

If you want to try other tutorials about sugar skulls, we have something for you:

And if you found this tutorial pleasantly relaxing, you can find similar ones here:

how to draw a sugar skull

Agregator najlepszych postów o designie, webdesignie, cssie i Internecie