how to use Graphic pen tool in photoshop with photo

In this article I will show you how to use the Graphic pen tool in photoshop with photo effect. Using this tool we can create easily photo effect. This is very simple effect but still this look very cool.

Graphic pen tool in photoshop

Follow my steps for creating photo effect using graphic pen tool in photoshop

First step

Open a Photoshop then File>>new (Ctrl+N)

Graphic pen tool in photoshop
Graphic pen tool in photoshop

Second step

create a new document

Third step

File >> open (Ctrl+O) then select image as per your choise

Fourth Step

Now select filter >> select Sketch effect >> Graphic pen… (Ctrl+F)

Fifth step



click on graphic pen option

Ok and you can see the photo with graphic pen effect in photoshop…

how to use Graphic pen tool in photoshop with text

In this article I will show you how to use Graphic pen tool for text effect. Using this tool we can create easily text effect.

use Graphic pen tool

Draw straight line segments with the Pen tool.
The simplest path you can draw with the Pen tool is a straight line, made by clicking the Pen tool to create two anchor points. By continuing to click, you create a path made of straight line segments connected by corner points.

Select a text write on workspace “Graphic pen”

Then, go to filter option >> sketch option >>Graphic pen…

Then  go to effect for Graphic pen this will be show you

Then effect will show you for Graphic Pen……

use Graphic pen tool
use Graphic pen tool

Create Horizontal page Menus in WordPress theme

Many people are new in development of wordpress theme. They are searching for how to Create the Horizontal page Menus in WordPress theme. Here is code for creating the Horizontal page Menus in WordPress theme.

Create Horizontal page Menus in WordPress theme

Here I am going to show the simple technique of creating the horizontal page menu with wordpressapi.

Just create pages in wordpress first. Add following lines to your header.php file where you want to show the page menu.


navmenu">
<ul>

<ul>

<ul>
	<li>php echo get_settings('home'); ?>">HOME</li>
</ul>

</ul>

<!--?<span class="hiddenSpellError" pre="" data-mce-bogus="1"-->php wp_page_menu(); ?>
</ul>
</div>

Add folliowing lines in your style.css file.


#navmenu ul {margin: 0; padding: 0; list-style-type: none; list-style-image: none; }
#navmenu li {display: inline; }
#navmenu ul li a {text-decoration:none;  margin: 4px; padding: 5px 20px 5px 20px; color: blue; background: pink;}
#navmenu ul li a:hover {color: purple; background: yellow; }

Horizontal page Menus in WordPress
Create Horizontal page Menus in WordPress theme

 

That sit!