<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Yorgo Nestoridis &#187; Web Design Workshop</title>
	<atom:link href="http://yorgonestoridis.com/category/web-design/web-design-workshop-web-design/feed/" rel="self" type="application/rss+xml" />
	<link>http://yorgonestoridis.com</link>
	<description>Media Marketing Publishing</description>
	<lastBuildDate>Mon, 21 May 2012 16:33:05 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>How to build a Custom WordPress Site 3</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis/how-to-build-a-custom-wordpress-site-3/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis/how-to-build-a-custom-wordpress-site-3/#comments</comments>
		<pubDate>Thu, 17 May 2012 09:14:26 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Blog Master Class]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Semiomantics Design]]></category>
		<category><![CDATA[Semiomantics Project Management]]></category>
		<category><![CDATA[Semiomantics Tutorial]]></category>
		<category><![CDATA[Semiomantics Web Development]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Development]]></category>
		<category><![CDATA[WordPress Training]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[WP Best]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>
		<category><![CDATA[Custom Post Functionality]]></category>
		<category><![CDATA[Custom Post Variables]]></category>
		<category><![CDATA[How to build a custom WordPress site]]></category>
		<category><![CDATA[WordPress Custom Post Types]]></category>
		<category><![CDATA[WordPress Custom Theme]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=23007</guid>
		<description><![CDATA[Customizing WordPress Child Theme In this tutorial we will create Custom Post Types and add variables and functionality to them. Also we will add some styling for more user-friendly display in the dashboard. Having set up our basic Child Theme structure we will now proceed with the customization. But before that we will do some basic WP configuration and go through the settings. You may be used to building WordPress based sites and therefore you may have some habits in as much as settings and configuration are concerned. Some basic WP Settings Here is what I do in the dashboard: 1. Trash and permanently delete the Hello World Post. 2. Delete the default Links. 3. Set Permalinks to: /%category%/%postname%/ 4. Under Settings General enter Blog Name and Tagline; for the purpose of this exercise I use  as a Title: WordPress TTP and as a Tagline: Tips, Themes and Plugins 5. Add some content to test content display by importing an RSS feed using a plugin such as Feedwordpress. I pulled into a new category called Blog the feed from my author-blog at: http://yorgonestoridis.com/feed Custom Posts and Child Theme We have set up a basic child theme for the purpose of [...]
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/how-to-build-a-custom-wordpress-site-2/' rel='bookmark' title='How to build a Custom WordPress Site 2'>How to build a Custom WordPress Site 2</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/how-to-build-a-custom-wordpress-site/' rel='bookmark' title='How to build a custom WordPress Site'>How to build a custom WordPress Site</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/custom-widgets-for-wordpress/' rel='bookmark' title='Custom Widgets for WordPress'>Custom Widgets for WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/wordpress-3-4-beta/' rel='bookmark' title='WordPress 3.4 Beta'>WordPress 3.4 Beta</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/' rel='bookmark' title='Facebook Strategy with WordPress'>Facebook Strategy with WordPress</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Customizing_WordPress_Child_Theme"><h2>Customizing WordPress Child Theme</h2></span>
<div class='toc wptoc'>
<h2>Contents</h2>
<ol class='toc-odd level-1'>
	<li>
		<a href="#Customizing_WordPress_Child_Theme">Customizing WordPress Child Theme</a>
		<ol class='toc-even level-2'>
			<li>
				<a href="#Some_basic_WP_Settings">Some basic WP Settings</a>
			</li>
			<li>
				<a href="#Custom_Posts_and_Child_Theme">Custom Posts and Child Theme</a>
			</li>
			<li>
				<a href="#Child_Theme_functions.php">Child Theme functions.php</a>
			</li>
			<li>
				<a href="#Define_Post_Types_in_posttypes.php">Define Post Types in posttypes.php</a>
				<ol class='toc-odd level-3'>
					<li>
						<a href="#Custom_Post_Types">1. Custom Post Types</a>
					</li>
					<li>
						<a href="#Add_advanced_Variables">2. Add advanced Variables</a>
					</li>
				</ol>
			<li>
				<a href="#Add_advanced_functionality">3. Add advanced functionality</a>
				<ol class='toc-odd level-3'>
					<li>
						<a href="#Change_the_menu_position">4. Change the menu position</a>
					</li>
					<li>
						<a href="#Add_Custom_Post_Type_Icons">5. Add Custom Post Type Icons</a>
					</li>
				</ol>
			<li>
				<a href="#Resulting_posttypes.php_code:">Resulting posttypes.php code:</a>
			</li>
</ol>
</ol>
</ol>
</div>
<div class='wptoc-end'> </div>
<p>In this tutorial we will create Custom Post Types and add variables and functionality to them. Also we will add some styling for more user-friendly display in the dashboard.</p>
<p>Having set up our basic Child Theme structure we will now proceed with the customization. But before that we will do some basic WP configuration and go through the settings. You may be used to building WordPress based sites and therefore you may have some habits in as much as settings and configuration are concerned.</p>
<div id="attachment_23010" class="wp-caption alignnone" style="width: 470px"><a href="http://yorgonestoridis.com/wp-content/uploads/2012/05/custom-wp-theme-magazine.jpg"><img class="size-large wp-image-23010" title="Semiomantics XO Custom Magazine for WordPress" src="http://yorgonestoridis.com/wp-content/uploads/2012/05/custom-wp-theme-magazine-460x576.jpg" alt="Semiomantics XO Custom Magazine for WordPress" width="460" height="576" /></a><p class="wp-caption-text">Semiomantics XO Custom Magazine for WordPress</p></div>
<span id="Some_basic_WP_Settings"><h3>Some basic WP Settings</h3></span>
<p>Here is what I do in the dashboard:</p>
<p>1. Trash and permanently delete the Hello World Post.</p>
<p>2. Delete the default Links.</p>
<p>3. Set Permalinks to: /%category%/%postname%/</p>
<p>4. Under Settings General enter Blog Name and Tagline; for the purpose of this exercise I use  as a Title: WordPress TTP and as a Tagline: Tips, Themes and Plugins</p>
<p>5. Add some content to test content display by importing an RSS feed using a plugin such as Feedwordpress. I pulled into a new category called Blog the feed from my author-blog at:</p>
<p>http://yorgonestoridis.com/feed</p>
<span id="Custom_Posts_and_Child_Theme"><h3>Custom Posts and Child Theme</h3></span>
<p>We have set up a basic child theme for the purpose of modifying and customizing the Parent Theme. Creating structural modifications such as creating Custom Posts and Taxonomies are not strictly speaking theme relevant but should apply to all themes or as the case may be, to multiple themes in a Multi-user installation.</p>
<p>For this reason we will lodge the file which defines the custom posts outside any specific theme folder but inside wp-contents/themes.</p>
<p>We create a file called posttypes.php in wp-contents/themes. This file serves to define our custom post types and the way they integrate into the WP architecture.</p>
<p>In order to include the new Post Types in our Child theme, we include the posttype.php using an include function. This we doby adding a new file to our child theme; this file we call functions.php.</p>
<span id="Child_Theme_functions.php"><h3>Child Theme functions.php</h3></span>
<p>As you know, every WP theme contains a functions.php file; when creating a child theme which needs to expand the functions existing in the parent theme, then we just add a file with the same name, ‘functions.php’ to the child theme and append the functions defined in the parent theme.</p>
<p><strong>Note</strong>: functions.php of the child theme does not override existing functions in the parent theme as is the case with styles (‘style.css)!</p>
<p>PHP allows us easily to include files in a script with the ‘include’ function and then by adding the URL to the file you wish to include.</p>
<p>Our ‘functions.php’ file will look as follows:</p>
<pre class="brush: php; title: ; notranslate">

&lt;?php
include_once (ABSPATH . 'wp-content/themes/posttypes.php');
?&gt;
</pre>
<p>Please note that we use the ABSPATH function to construct the URL as the normal url path</p>
<pre class="brush: php; title: ; notranslate"> url(&quot;.../themes/posttypes.php&quot;) </pre>
<p>does not work here.</p>
<p>Save functions.php into your Child Theme Folder.</p>
<span id="Define_Post_Types_in_posttypes.php"><h3>Define Post Types in posttypes.php</h3></span>
<p>In order to set up our post types we proceed step by step:</p>
<ol>
<li>Set up Custom Post Types</li>
<li>Add advanced Variables to Post Types</li>
<li>Add advanced custom post type functionality</li>
<li>Change the Menu Position (Dashboard) of the Custom Post Types</li>
<li>Add custom post type icon</li>
</ol>
<span id="Custom_Post_Types"><h4>1. Custom Post Types</h4></span>
<p>Custom Post Types allow to separate different content from the traditional blog content. Blog content usually is edited as Posts and Pages, whereas Pages (static content) can be organized in a hierarchical way and posts are sorted by categories and tags. In order to display static content (pages) using customized layout, we can create different page templates easily.</p>
<p>Custom Post Types allow to sort content by Posts and Custom Post Types whereas custom post types are similar to posts but using custom taxonomies and as the case may be custom layouts or design adapted to the content. A typical example is a single product page from a shop compared to a single post page on the blog section of the website.</p>
<p>For the purpose of our exercise we will create 3 Custom Post Types</p>
<ul>
<li>WordPress Tips</li>
<li>WordPress Themes</li>
<li>WordPress Plugins</li>
</ul>
<p>Setting up post types is relatively easy; while we could use plugins to create custom post types, I think hard-coding is a more solid and professional way of creating them. To create a new Custom Post Type we just need to add a few lines of code to the functions file or in our case to the abstraction file at posttypes.php which will then be included int the functions.php as per above where we have added the include function into functions.php.</p>
<p>We will create now the 3 Custom Post Types whereas the code used for each of them is the same except for the post type names and the function names.</p>
<p>To create the first post type, edit posttypes.php and paste in:</p>
<pre class="brush: php; title: ; notranslate">

&lt;?php

// Add new post type for WP Tips
add_action('init', 'wordpress_tips_init');
function wordpress_tips_init()
{
$args = array(
'label' =&gt; _x('WP Tips'),
'singular_label' =&gt; _x('WP Tip'),
'public' =&gt; true,
'publicly_queryable' =&gt; true,
'show_ui' =&gt; true,
'query_var' =&gt; true,
'rewrite' =&gt; true,
'capability_type' =&gt; 'post',
'hierarchical' =&gt; false,
'menu_position' =&gt; null,
'supports' =&gt; array('title','editor','comments')
);
register_post_type('wordpress_tips',$args);
}
</pre>
<p>Save the file.</p>
<p>At the top we type a comment explaining what the following code is all about (Add new Post Type for WP Tips). Then we call the function in to WordPress with ‘add_action’ and at the bottom we register the post type. As you can see the function consists of a number of arguments which we will look into later ($args).</p>
<p>Check out your Dashboard now and you will see that the new post type is added to the menu just above ‘Appearance’.</p>
<p>To add new post types, you just need to copy and paste the above code and make simple changes to the name and labels of the post type.</p>
<span id="Add_advanced_Variables"><h4>2. Add advanced Variables</h4></span>
<p>The above post types work, however they are not well refined. For this reason we will add some more variables. As the new posts are still called “Post” in the editor for example we will need to relabel to display the real name of the post type. For this we will write a label variable which can take an array of labels and we thus relabel all instances of our Custom Post Type.</p>
<p>The variable we create with the array of labels looks as follows:</p>
<pre class="brush: php; title: ; notranslate">

$wordpress_tips_labels = array(
'name' =&gt; _x('WP Tips', 'post type general name'),
'singular_name' =&gt; _x('WP Tip', 'post type singular name'),
'all_items' =&gt; __('All WP Tips'),
'add_new' =&gt; _x('Add new WP Tip', 'wordpress_tips'),
'add_new_item' =&gt; __('Add new WP Tip'),
'edit_item' =&gt; __('Edit WP Tip'),
'new_item' =&gt; __('New WP Tip'),
'view_item' =&gt; __('View WP Tip'),
'search_items' =&gt; __('Search in WP Tips'),
'not_found' =&gt;  __('No WP Tips found'),
'not_found_in_trash' =&gt; __('No WP Tips found in trash'),
'parent_item_colon' =&gt; ''
);
</pre>
<p>We will insert this piece of code just before our block of arguments and then change the arguments accordingly as follows:</p>
<pre class="brush: php; title: ; notranslate">

&lt;?php

// Add new post type for WP Tips
add_action('init', 'wordpress_tips_init');
function wordpress_tips_init()
{

$wordpress_tips_labels = array(
'name' =&gt; _x('WP Tips', 'post type general name'),
'singular_name' =&gt; _x('WP Tip', 'post type singular name'),
'all_items' =&gt; __('All WP Tips'),
'add_new' =&gt; _x('Add new WP Tip', 'wordpress_tips'),
'add_new_item' =&gt; __('Add new WP Tip'),
'edit_item' =&gt; __('Edit WP Tip'),
'new_item' =&gt; __('New WP Tip'),
'view_item' =&gt; __('View WP Tip'),
'search_items' =&gt; __('Search in WP Tips'),
'not_found' =&gt;  __('No WP Tips found'),
'not_found_in_trash' =&gt; __('No WP Tips found in trash'),
'parent_item_colon' =&gt; ''
);
$args = array(

/*      'label' =&gt; _x('WP Tips'), */
'labels' =&gt; $wordpress_tips_labels,
/*      'singular_label' =&gt; _x('WP Tips'),   */
'public' =&gt; true,
'publicly_queryable' =&gt; true,
'show_ui' =&gt; true,
'query_var' =&gt; true,
'rewrite' =&gt; true,
'capability_type' =&gt; 'post',
'hierarchical' =&gt; false,
'menu_position' =&gt; null,
'supports' =&gt; array('title','editor','comments')
);
register_post_type('wordpress_tips',$args);
}
</pre>
<p>As you can see from the two commented lines, we have changed ‘label’ to ‘labels and defined with the variable from above ‘$wordpress_tips_labels’ and we have deleted the ‘singular label’ as it is replaced wby ‘singular name’ from the label variable.</p>
<p>For the other new post types it’s the same game, just copy and paste and change the labels accordingly.</p>
<p>Save posttypes.php and check it out in your dashboard.</p>
<p>You will now see all labels added and your site becomes a lot more user-friendly and less confusing.</p>
<span id="Add_advanced_functionality"><h3>3. Add advanced functionality</h3></span>
<p>We can define the functionalities of our new post types with an array under the variable ‘supports’; basically the ‘supports’ line defines which functionalities should be supported, i.e. which content should be displayed.</p>
<p>In our example, the line above looks like this:</p>
<pre class="brush: php; title: ; notranslate">

'supports' =&gt; array('title','editor','comments')
</pre>
<p>When you go to your dashboard, and add a new WP Tip you will see the editor shows the ‘title’, ‘content’ and ‘comments’ fields.</p>
<p>While we can go crazy on adding supported functionality, we will here just look at some standard functionalities. To add more functionality we just need to append the array in the supports variable like so:</p>
<pre class="brush: php; title: ; notranslate">

'supports' =&gt; array('title','editor','author','thumbnail','excerpt','comments','custom-fields'),
'has_archive' =&gt; 'wordpress_tips'
</pre>
<p>By adding the above functionalities to the supports variable, we get something pretty close to the standard post editor, since we add the author, excerpts and custom fields as well as the featured picture functionality.</p>
<p>Also we can add a new variable, such as ‘has archive’ and then name the archive, in our example ‘WordPress Tips’.</p>
<p>This archive variable allows us to create an index page just for the WP Tips post  types.</p>
<p>Our Code for the WP Tips Custom Post Type is as follows:</p>
<pre class="brush: php; title: ; notranslate">

&lt;?php

// Add new post type for WP Tips
add_action('init', 'wordpress_tips_init');
function wordpress_tips_init()
{

$wordpress_tips_labels = array(
'name' =&gt; _x('WP Tips', 'post type general name'),
'singular_name' =&gt; _x('WP Tip', 'post type singular name'),
'all_items' =&gt; __('All WP Tips'),
'add_new' =&gt; _x('Add new WP Tip', 'wordpress_tips'),
'add_new_item' =&gt; __('Add new WP Tip'),
'edit_item' =&gt; __('Edit WP Tip'),
'new_item' =&gt; __('New WP Tip'),
'view_item' =&gt; __('View WP Tip'),
'search_items' =&gt; __('Search in WP Tips'),
'not_found' =&gt;  __('No WP Tips found'),
'not_found_in_trash' =&gt; __('No WP Tips found in trash'),
'parent_item_colon' =&gt; ''
);
$args = array(

/*      'label' =&gt; _x('WP Tips'), */
'labels' =&gt; $wordpress_tips_labels,
/*      'singular_label' =&gt; _x('WP Tips'),   */
'public' =&gt; true,
'publicly_queryable' =&gt; true,
'show_ui' =&gt; true,
'query_var' =&gt; true,
'rewrite' =&gt; true,
'capability_type' =&gt; 'post',
'hierarchical' =&gt; false,
'menu_position' =&gt; null,
'supports' =&gt; array('title','editor','author','thumbnail','excerpt','comments','custom-fields'),
'has_archive' =&gt; 'wordpress_tips'
);
register_post_type('wordpress_tips',$args);
}
</pre>
<p>Copy and paste with the necessary changes for the other custom post types and save the file.</p>
<p>Check it out from the Dashboard Menu and the Editor.</p>
<span id="Change_the_menu_position"><h4>4. Change the menu position</h4></span>
<p>As per now, our custom posts menu in the dashboard is positioned just above appearance and below comments. As custom posts are similar to posts, we want to move the custom post tabs just below the Posts tab.</p>
<p>As you can see from our code above, the menu position is set to ‘null’. The value ‘null’ makes that the custom post types are added at the bottom of the first section of the dashboard menu.</p>
<p>Depending of where you want to position your custom posts, you will need to change the value ‘null’ to another value according to the below reference scale:</p>
<p>0 — at the very top<br />
5 — below Posts<br />
10 — below Media<br />
15 — below Links<br />
20 — below Pages<br />
25 — below comments<br />
60 — below first separator<br />
65 — below Plugins<br />
70 — below Users<br />
75 — below Tools<br />
80 — below Settings<br />
100 — below second separator</p>
<p>As we aim the spot below “Posts” we will use the value ‘5’, which will result in</p>
<pre class="brush: php; title: ; notranslate">

...

'menu_position' =&gt; 5,

...
</pre>
<p>If you want to set a particular order, you can also use 3 different numbers, like 4,5 and 6 respectively.</p>
<p>Do the modification inside the arguments of each post type and save.</p>
<p>By repositioning the custom post type menu items , we signal priority and importance.</p>
<p>Check it out from the dashboard and note that our custom posts are right below ‘Posts’ now.</p>
<span id="Add_Custom_Post_Type_Icons"><h4>5. Add Custom Post Type Icons</h4></span>
<p>In order to make our custom post types stick out from the menu and to add user-friendly visual identifiers, we replace the default icons with custom icons.</p>
<p>There are two sizes needed, 16px and 32 px for the menu and the page title area respectively.</p>
<p>I have created sample icons and psd files for your convenience: please download from <a title="Icons" href="http://yorgonestoridis.com/download/xoximages.rar" target="_blank">HERE</a>.</p>
<p>Decompress the downloaded rar file and copy the image folder into wp-contents/themes (as we had done with posttypes.php, as we want to make these images available to all themes.</p>
<p>To add these icons we introduce a new function to posttypes.php with a function batch including some css/html code for styling purposes:</p>
<pre class="brush: php; title: ; notranslate">

// Add new Custom Post Type icons
add_action( 'admin_head', 'wordpress_icons' );
function wordpress_icons() {
?&gt;
&lt;style type=&quot;text/css&quot; media=&quot;screen&quot;&gt;
#menu-posts-wordpress_tips .wp-menu-image {
background: url(&lt;?php bloginfo('url') ?&gt;/wp-content/themes/images/tips-16x16.png) no-repeat 6px !important;
}
.icon32-posts-wordpress_tips {
background: url(&lt;?php bloginfo('url') ?&gt;/wp-content/themes/images/tips-32x32.png) no-repeat !important;
}
#menu-posts-wordpress_themes .wp-menu-image {
background: url(&lt;?php bloginfo('url') ?&gt;/wp-content/themes/images/themes-16x16.png) no-repeat 6px !important;
}
.icon32-posts-wordpress_themes {
background: url(&lt;?php bloginfo('url') ?&gt;/wp-content/themes/images/themes-32x32.png) no-repeat !important;
}
#menu-posts-wordpress_plugins .wp-menu-image {
background: url(&lt;?php bloginfo('url') ?&gt;/wp-content/themes/images/plugins-16x16.png) no-repeat 6px !important;
}
.icon32-posts-wordpress_plugins {
background: url(&lt;?php bloginfo('url') ?&gt;/wp-content/themes/images/plugins-32x32.png) no-repeat !important;
}

&lt;/style&gt;
&lt;?php }
</pre>
<p>Note the incomplete php delimiter at the end which is needed to switch back to php from css/html code.</p>
<span id="Resulting_posttypes.php_code:"><h3>Resulting posttypes.php code:</h3></span>
<p>At this stage, your posttypes.php looks as follows:</p>
<pre class="brush: php; title: ; notranslate">

&lt;?php

// Add new post type for WP Tips
add_action('init', 'wordpress_tips_init');
function wordpress_tips_init()
{
$wordpress_tips_labels = array(
'name' =&gt; _x('WP Tips', 'post type general name'),
'singular_name' =&gt; _x('WP Tip', 'post type singular name'),
'all_items' =&gt; __('All WP Tips'),
'add_new' =&gt; _x('Add new WP Tip', 'wordpress_tips'),
'add_new_item' =&gt; __('Add new WP Tip'),
'edit_item' =&gt; __('Edit WP Tip'),
'new_item' =&gt; __('New WP Tip'),
'view_item' =&gt; __('View WP Tip'),
'search_items' =&gt; __('Search in WP Tips'),
'not_found' =&gt;  __('No WP Tips found'),
'not_found_in_trash' =&gt; __('No WP Tips found in trash'),
'parent_item_colon' =&gt; ''
);
$args = array(
/*        'label' =&gt; _x('WP Tips'), */
'labels' =&gt; $wordpress_tips_labels,
/*        'singular_label' =&gt; _x('WP Tips'),   */
'public' =&gt; true,
'publicly_queryable' =&gt; true,
'show_ui' =&gt; true,
'query_var' =&gt; true,
'rewrite' =&gt; true,
'capability_type' =&gt; 'post',
'hierarchical' =&gt; false,
'menu_position' =&gt; 5,
'supports' =&gt; array('title','editor','author','thumbnail','excerpt','comments','custom-fields'),
'has_archive' =&gt; 'wordpress_tips'
);
register_post_type('wordpress_tips',$args);
}

// Add new post type for WP Themes
add_action('init', 'wordpress_themes_init');
function wordpress_themes_init()
{

$wordpress_themes_labels = array(
'name' =&gt; _x('WP Themes', 'post type general name'),
'singular_name' =&gt; _x('WP Theme', 'post type singular name'),
'all_items' =&gt; __('All WP Themes'),
'add_new' =&gt; _x('Add new WP Theme', 'wordpress_themes'),
'add_new_item' =&gt; __('Add new WP Theme'),
'edit_item' =&gt; __('Edit WP Theme'),
'new_item' =&gt; __('New WP Theme'),
'view_item' =&gt; __('View WP Theme'),
'search_items' =&gt; __('Search in WP Themes'),
'not_found' =&gt;  __('No WP Theme found'),
'not_found_in_trash' =&gt; __('No WP Theme found in trash'),
'parent_item_colon' =&gt; ''
);

$args = array(
'labels' =&gt; $wordpress_themes_labels,
'public' =&gt; true,
'publicly_queryable' =&gt; true,
'show_ui' =&gt; true,
'query_var' =&gt; true,
'rewrite' =&gt; true,
'capability_type' =&gt; 'post',
'hierarchical' =&gt; false,
'menu_position' =&gt; 5,
'supports' =&gt; array('title','editor','author','thumbnail','excerpt','comments','custom-fields'),
'has_archive' =&gt; 'wordpress_themes'
);
register_post_type('wordpress_themes',$args);
}

// Add new post type for WP Plugins
add_action('init', 'wordpress_plugins_init');
function wordpress_plugins_init()
{

$wordpress_plugins_labels = array(
'name' =&gt; _x('WP Plugins', 'post type general name'),
'singular_name' =&gt; _x('WP Plugin', 'post type singular name'),
'all_items' =&gt; __('All WP Plugins'),
'add_new' =&gt; _x('Add new WP Plugin', 'wordpress_plugins'),
'add_new_item' =&gt; __('Add new WP Plugin'),
'edit_item' =&gt; __('Edit WP Plugin'),
'new_item' =&gt; __('New WP Plugin'),
'view_item' =&gt; __('View WP Plugin'),
'search_items' =&gt; __('Search in WP Plugins'),
'not_found' =&gt;  __('No WP Plugin found'),
'not_found_in_trash' =&gt; __('No WP Plugin found in trash'),
'parent_item_colon' =&gt; ''
);

$args = array(
'labels' =&gt; $wordpress_plugins_labels,
'public' =&gt; true,
'publicly_queryable' =&gt; true,
'show_ui' =&gt; true,
'query_var' =&gt; true,
'rewrite' =&gt; true,
'capability_type' =&gt; 'post',
'hierarchical' =&gt; false,
'menu_position' =&gt; 5,
'supports' =&gt; array('title','editor','author','thumbnail','excerpt','comments','custom-fields'),
'has_archive' =&gt; 'wordpress_plugins'
);
register_post_type('wordpress_plugins',$args);
}

// Add new Custom Post Type icons
add_action( 'admin_head', 'wordpress_icons' );
function wordpress_icons() {
?&gt;
&lt;style type=&quot;text/css&quot; media=&quot;screen&quot;&gt;
#menu-posts-wordpress_tips .wp-menu-image {
background: url(&lt;?php bloginfo('url') ?&gt;/wp-content/themes/images/tips-16x16.png) no-repeat 6px !important;
}
.icon32-posts-wordpress_tips {
background: url(&lt;?php bloginfo('url') ?&gt;/wp-content/themes/images/tips-32x32.png) no-repeat !important;
}
#menu-posts-wordpress_themes .wp-menu-image {
background: url(&lt;?php bloginfo('url') ?&gt;/wp-content/themes/images/themes-16x16.png) no-repeat 6px !important;
}
.icon32-posts-wordpress_themes {
background: url(&lt;?php bloginfo('url') ?&gt;/wp-content/themes/images/themes-32x32.png) no-repeat !important;
}
#menu-posts-wordpress_plugins .wp-menu-image {
background: url(&lt;?php bloginfo('url') ?&gt;/wp-content/themes/images/plugins-16x16.png) no-repeat 6px !important;
}
.icon32-posts-wordpress_plugins {
background: url(&lt;?php bloginfo('url') ?&gt;/wp-content/themes/images/plugins-32x32.png) no-repeat !important;
}

&lt;/style&gt;
&lt;?php }

?&gt;
</pre>
<p>Check it out from your dashboard and you should see something similar to this:</p>
<div id="attachment_23012" class="wp-caption alignnone" style="width: 470px"><a href="http://yorgonestoridis.com/wp-content/uploads/2012/05/yorgo-12-3.jpg"><img class="size-large wp-image-23012" title="Custom Post Types" src="http://yorgonestoridis.com/wp-content/uploads/2012/05/yorgo-12-3-460x356.jpg" alt="Custom Post Types" width="460" height="356" /></a><p class="wp-caption-text">Custom Post Types with Custom Icons</p></div>
<p> </p>
<p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/how-to-build-a-custom-wordpress-site-2/' rel='bookmark' title='How to build a Custom WordPress Site 2'>How to build a Custom WordPress Site 2</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/how-to-build-a-custom-wordpress-site/' rel='bookmark' title='How to build a custom WordPress Site'>How to build a custom WordPress Site</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/custom-widgets-for-wordpress/' rel='bookmark' title='Custom Widgets for WordPress'>Custom Widgets for WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/wordpress-3-4-beta/' rel='bookmark' title='WordPress 3.4 Beta'>WordPress 3.4 Beta</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/' rel='bookmark' title='Facebook Strategy with WordPress'>Facebook Strategy with WordPress</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis/how-to-build-a-custom-wordpress-site-3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Ycademy Online Seminar Apri 2012</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/#comments</comments>
		<pubDate>Mon, 16 Apr 2012 17:13:06 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Apple Touch Icons]]></category>
		<category><![CDATA[Best Facebook Pages]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Facebook Advertising]]></category>
		<category><![CDATA[Facebook MArketing]]></category>
		<category><![CDATA[Facebook Marketing Ycademy]]></category>
		<category><![CDATA[Facebook Online Seminar]]></category>
		<category><![CDATA[Facebook Optimization]]></category>
		<category><![CDATA[Facebook Pages]]></category>
		<category><![CDATA[Facebook Ycademy]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Semiomantics Facebook Developments]]></category>
		<category><![CDATA[Semiomantics Mobile]]></category>
		<category><![CDATA[Semiomantics Web Development]]></category>
		<category><![CDATA[Semiomantics Ycademy]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Social Network Publishing]]></category>
		<category><![CDATA[Social Network Publishing Seminar]]></category>
		<category><![CDATA[Trainings Coaching and Seminars]]></category>
		<category><![CDATA[Web Design for Mobile Devices]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Development]]></category>
		<category><![CDATA[Ycademy Online Seminar]]></category>
		<category><![CDATA[Mobile Facebook]]></category>
		<category><![CDATA[Mobile WordPress]]></category>
		<category><![CDATA[Mobile WordPress and Social Media]]></category>
		<category><![CDATA[Publishing for the Mobile Web]]></category>
		<category><![CDATA[Semiomantics Mobile Developments]]></category>
		<category><![CDATA[Semiomantics Mobile Publishing]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22772</guid>
		<description><![CDATA[Mobile WordPress and Social Media The fast evolution of the mobile web has created new needs for publishers, whereas the objective remains to integrate mobile web targets into an existing workflow and to optimize productivity with the help of automated conversion scripts and tools. What’s New on Mobile WordPress and Social Media At Semiomantics the starting point for our development is the most comprehensive conversion plugin, called WPTouch Pro. WPTouch has released its latest version end of March 2012 with some adjustments for iOS 5.1 and many other fixes and developments: * Added: Custom advertising options for iPad * Added: Simple caching of desktop functions.php * Added: Russian language file * Added: Automatic archiving of previous settings in wptouch-data directory * Added: Compatibility setting for BuddyPress Mobile AJAX support * Fixed: Changing user-agent matching that may have interfered with advertising in certain scenarios * Changed: Replaced include with locate_template in theme files, should allow child overrides of custom WPtouch Pro template files * Changed: Algorithm to reload settings; may have caused settings to be lost in a certain scenario * Updated: All translations based on 2.6 strings * Fixed: An issue with Register and Lost password links in Classic * [...]
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/facebook-and-mobile-web-seminar-by-ycademy/' rel='bookmark' title='Facebook and Mobile Web Seminar by Ycademy'>Facebook and Mobile Web Seminar by Ycademy</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-january-2012/' rel='bookmark' title='Ycademy Online Seminar January 2012'>Ycademy Online Seminar January 2012</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-may-2011/' rel='bookmark' title='Ycademy Online Seminar May 2011'>Ycademy Online Seminar May 2011</a></li>
<li><a href='http://yorgonestoridis.com/media-marketing-publishing/facebook-ycademy/' rel='bookmark' title='Facebook Online Seminar by Ycademy'>Facebook Online Seminar by Ycademy</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/' rel='bookmark' title='Facebook Strategy with WordPress'>Facebook Strategy with WordPress</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Mobile_WordPress_and_Social_Media"><h2>Mobile WordPress and Social Media</h2></span>
<div class='toc wptoc'>
<h2>Contents</h2>
<ol class='toc-odd level-1'>
	<li>
		<a href="#Mobile_WordPress_and_Social_Media">Mobile WordPress and Social Media</a>
		<ol class='toc-even level-2'>
			<li>
				<a href="#Whats_New_on_Mobile_WordPress_and_Social_Media">What’s New on Mobile WordPress and Social Media</a>
			</li>
			<li>
				<a href="#Why_to_use_advanced_Mobile_Web_Developments">Why to use advanced Mobile Web Developments</a>
			</li>
			<li>
				<a href="#The_Goal_of_Semiomantics_Developments">The Goal of Semiomantics Developments</a>
			</li>
		</ol>
	<li>
		<a href="#The_Goal_and_Agenda_of_the_Ycademy_April_Seminar">The Goal and Agenda of the Ycademy April Seminar</a>
		<ol class='toc-even level-2'>
			<li>
				<a href="#Mobile_Web">1. Mobile Web</a>
				<ol class='toc-odd level-3'>
					<li>
						<a href="#Build_a_Mobile_Child_Theme_for_your_Website.">Build a Mobile Child Theme for your Website.</a>
					</li>
					<li>
						<a href="#Build_OS_specific_Icons.">Build OS specific Icons.</a>
					</li>
					<li>
						<a href="#Build_a_Start_up_screen_image.">Build a Start up screen (image).</a>
					</li>
					<li>
						<a href="#Build_Mobile_specific_WP_3.0_menus.">Build Mobile specific WP 3.0 menus.</a>
					</li>
					<li>
						<a href="#Custom_Links_and_Icons.">Custom Links and Icons.</a>
					</li>
					<li>
						<a href="#Integrate_Advertizing:_Adsense_Admob_Custom_Ads.">Integrate Advertizing: Adsense, Admob, Custom Ads.</a>
					</li>
					<li>
						<a href="#Custom_Post_formats_for_the_Mobile_theme.">Custom Post formats for the Mobile theme.</a>
					</li>
					<li>
						<a href="#Test_Plugin_compatibility_and_create_your_mobile_plugin_menu.">Test Plugin compatibility and create your mobile plugin menu.</a>
					</li>
					<li>
						<a href="#Embed_media_for_Mobile_content_YouTube_Vimeo_or_self-hosted_standard_h.264_encoded_media.">Embed media for Mobile content, YouTube, Vimeo or self-hosted standard h.264 encoded media.</a>
					</li>
					<li>
						<a href="#Specifics_for_tablet_computing_namely_for_the_iPad_and_other_touch_tablets.">Specifics for tablet computing, namely for the iPad and other touch tablets.</a>
					</li>
				</ol>
			<li>
				<a href="#Mobile_Social_Networks">2. Mobile Social Networks</a>
			</li>
			<li>
				<a href="#Schedule">Schedule</a>
			</li>
			<li>
				<a href="#Materials">Materials</a>
			</li>
			<li>
				<a href="#Tickets_and_Discounts">Tickets and Discounts</a>
			</li>
</ol>
</ol>
</ol>
</div>
<div class='wptoc-end'> </div>
<p>The fast evolution of the mobile web has created new needs for publishers, whereas the objective remains to integrate mobile web targets into an existing workflow and to optimize productivity with the help of automated conversion scripts and tools.</p>
<span id="Whats_New_on_Mobile_WordPress_and_Social_Media"><h3>What’s New on Mobile WordPress and Social Media</h3></span>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2012/04/ycademy-april12.png"><img class="alignnone size-large wp-image-22773" title="Ycademy Online Seminar April 2012" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/ycademy-april12-460x213.png" alt="Ycademy Online Seminar April 2012" width="460" height="213" /></a></p>
<p>At Semiomantics the starting point for our development is the most comprehensive conversion plugin, called WPTouch Pro. WPTouch has released its latest version end of March 2012 with some adjustments for iOS 5.1 and many other fixes and developments:</p>
<ul>
<li>* Added: Custom advertising options for iPad</li>
</ul>
<ul>
<li>* Added: Simple caching of desktop functions.php</li>
</ul>
<ul>
<li>* Added: Russian language file</li>
</ul>
<ul>
<li>* Added: Automatic archiving of previous settings in wptouch-data directory</li>
</ul>
<ul>
<li>* Added: Compatibility setting for BuddyPress Mobile AJAX support</li>
</ul>
<ul>
<li>* Fixed: Changing user-agent matching that may have interfered with advertising in certain scenarios</li>
</ul>
<ul>
<li>* Changed: Replaced include with locate_template in theme files, should allow child overrides of custom WPtouch Pro template files</li>
</ul>
<ul>
<li>* Changed: Algorithm to reload settings; may have caused settings to be lost in a certain scenario</li>
</ul>
<ul>
<li>* Updated: All translations based on 2.6 strings</li>
</ul>
<ul>
<li>* Fixed: An issue with Register and Lost password links in Classic</li>
</ul>
<ul>
<li>* Fixed: Video issues with jwPlayer and other video sources and plugins</li>
</ul>
<ul>
<li>* Fixed: An issue which could cause the Share button not to show in Classic mobile theme</li>
</ul>
<ul>
<li>* Fixed: Improved appearance for Embedded Google maps</li>
</ul>
<ul>
<li>* Fixed: Issues with Tweet text encoding in sharing options for Classic</li>
</ul>
<ul>
<li>* Fixed: Search form issues with Skeleton theme</li>
</ul>
<ul>
<li>* Fixed: Admin issues for non-English languages</li>
</ul>
<ul>
<li>* Fixed: Issue where style.min.css was never loaded in child themes of Classic</li>
</ul>
<ul>
<li>* Fixed: Broken admin icons when SSL was enabled in the admin</li>
</ul>
<ul>
<li>* Added: Hungarian language</li>
</ul>
<ul>
<li>* Changed: Adjustments for memory management in Classic iPad theme</li>
</ul>
<ul>
<li>* Fixed: An issue with MapPress embeds</li>
</ul>
<ul>
<li>* Fixed: An issue with JetPack videos</li>
</ul>
<ul>
<li>* Fixed: An issue with Smart Youtube plugin videos</li>
</ul>
<ul>
<li>* Fixed: Issue with blank spaces in custom user agent string</li>
</ul>
<span id="Why_to_use_advanced_Mobile_Web_Developments"><h3>Why to use advanced Mobile Web Developments</h3></span>
<p>The above recent change-logs indicate the extent of considerations necessary for a serious development of an integrated mobile WP based solution. The reason for such complexity lies amongst others in the following:</p>
<ol>
<li>Increasing WordPress complexity and advanced plugin developments.</li>
<li>The multitude of mobile operating systems, browsers and devices of different sizes, display resolutions and aspect ratios.</li>
<li>The improved algorithms of Mobile Search.</li>
<li>The complexity of Semiomantics’ unbeaten optimization for conventional and mobile search.</li>
<li>The popularity of mobile and smart devices and the automated Mobile Search privileging mobile site versions.</li>
<li>The popularity of Social Networks and their ever changing integration parameters.</li>
</ol>

<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3634/' title='IMG_3634'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3634-200x150.png" class="attachment-thumbnail" alt="IMG_3634" title="IMG_3634" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3635/' title='IMG_3635'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3635-200x150.png" class="attachment-thumbnail" alt="IMG_3635" title="IMG_3635" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3636/' title='IMG_3636'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3636-200x150.png" class="attachment-thumbnail" alt="IMG_3636" title="IMG_3636" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3637/' title='IMG_3637'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3637-200x150.png" class="attachment-thumbnail" alt="IMG_3637" title="IMG_3637" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3638/' title='IMG_3638'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3638-200x150.png" class="attachment-thumbnail" alt="IMG_3638" title="IMG_3638" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3640/' title='IMG_3640'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3640-200x150.png" class="attachment-thumbnail" alt="IMG_3640" title="IMG_3640" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3641/' title='IMG_3641'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3641-200x150.png" class="attachment-thumbnail" alt="IMG_3641" title="IMG_3641" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3642/' title='IMG_3642'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3642-200x150.png" class="attachment-thumbnail" alt="IMG_3642" title="IMG_3642" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3643/' title='IMG_3643'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3643-200x150.png" class="attachment-thumbnail" alt="IMG_3643" title="IMG_3643" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3644/' title='IMG_3644'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3644-200x150.png" class="attachment-thumbnail" alt="IMG_3644" title="IMG_3644" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3646/' title='IMG_3646'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3646-200x150.png" class="attachment-thumbnail" alt="IMG_3646" title="IMG_3646" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3650/' title='IMG_3650'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3650-200x150.png" class="attachment-thumbnail" alt="IMG_3650" title="IMG_3650" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3651/' title='IMG_3651'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3651-200x150.png" class="attachment-thumbnail" alt="IMG_3651" title="IMG_3651" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3658/' title='IMG_3658'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3658-200x150.png" class="attachment-thumbnail" alt="IMG_3658" title="IMG_3658" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3659/' title='IMG_3659'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3659-200x150.png" class="attachment-thumbnail" alt="IMG_3659" title="IMG_3659" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3661/' title='IMG_3661'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3661-200x150.png" class="attachment-thumbnail" alt="IMG_3661" title="IMG_3661" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3662/' title='IMG_3662'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3662-200x150.png" class="attachment-thumbnail" alt="IMG_3662" title="IMG_3662" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3663/' title='IMG_3663'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3663-200x150.png" class="attachment-thumbnail" alt="IMG_3663" title="IMG_3663" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3664/' title='IMG_3664'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3664-200x150.png" class="attachment-thumbnail" alt="IMG_3664" title="IMG_3664" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/img_3665/' title='IMG_3665'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/IMG_3665-200x150.png" class="attachment-thumbnail" alt="IMG_3665" title="IMG_3665" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/512x512-ycademy-shop-1-5/' title='Ycademy April Seminar Ticket'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/512x512-ycademy-shop-1-200x150.png" class="attachment-thumbnail" alt="Ycademy April Seminar Ticket" title="Ycademy April Seminar Ticket" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/attachment/ycademy-april12/' title='Ycademy Online Seminar April 2012'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/ycademy-april12-200x150.png" class="attachment-thumbnail" alt="Ycademy Online Seminar April 2012" title="Ycademy Online Seminar April 2012" /></a>

<span id="The_Goal_of_Semiomantics_Developments"><h3>The Goal of Semiomantics Developments</h3></span>
<p>At Semiomantics we aim to make complex matters simple for day to day use. As an author or business, you don’t want to spend your time with technical issues or sitting logged into social networks to keep up with the continuous stream of information and exchanges. You want to do your business and be assured that your message gets spread broadly and that visitors requests are piped to proper destination without your intervention.</p>
<p>Semiomantics Developers are trained to build high end customer specific solutions assuring optimized productivity and workflow.</p>
<span id="The_Goal_and_Agenda_of_the_Ycademy_April_Seminar"><h2>The Goal and Agenda of the Ycademy April Seminar</h2></span>
<p>Based on the above, the Seminar will provide all necessary updates and upgrades for existing and new installations of high end websites, namely those built on Semiomantics XO and EVO frameworks.</p>
<p>During numerous Workshops we will knock participants personal sites into shape to comply with the highest standards.</p>
<span id="Mobile_Web"><h3>1. Mobile Web</h3></span>
<p>We will go step by step through the set-up and development of the customized version of each participants author site. This includes the following workshops:</p>
<ol>
<li>
<span id="Build_a_Mobile_Child_Theme_for_your_Website."><h4>Build a Mobile Child Theme for your Website.</h4></span>
</li>
<li>
<span id="Build_OS_specific_Icons."><h4>Build OS specific Icons.</h4></span>
</li>
<li>
<span id="Build_a_Start_up_screen_image."><h4>Build a Start up screen (image).</h4></span>
</li>
<li>
<span id="Build_Mobile_specific_WP_3.0_menus."><h4>Build Mobile specific WP 3.0 menus.</h4></span>
</li>
<li>
<span id="Custom_Links_and_Icons."><h4>Custom Links and Icons.</h4></span>
</li>
<li>
<span id="Integrate_Advertizing:_Adsense_Admob_Custom_Ads."><h4>Integrate Advertizing: Adsense, Admob, Custom Ads.</h4></span>
</li>
<li>
<span id="Custom_Post_formats_for_the_Mobile_theme."><h4>Custom Post formats for the Mobile theme.</h4></span>
</li>
<li>
<span id="Test_Plugin_compatibility_and_create_your_mobile_plugin_menu."><h4>Test Plugin compatibility and create your mobile plugin menu.</h4></span>
</li>
<li>
<span id="Embed_media_for_Mobile_content_YouTube_Vimeo_or_self-hosted_standard_h.264_encoded_media."><h4>Embed media for Mobile content, YouTube, Vimeo or self-hosted standard h.264 encoded media.</h4></span>
</li>
<li>
<span id="Specifics_for_tablet_computing_namely_for_the_iPad_and_other_touch_tablets."><h4>Specifics for tablet computing, namely for the iPad and other touch tablets.</h4></span>
</li>
</ol>
<span id="Mobile_Social_Networks"><h3>2. Mobile Social Networks</h3></span>
<p>We will focus on Facebook in particular. Mobile Facebook is quite restrictive; it is therefore important to learn about what is visible on mobile FB and what cannot be accessed, respectively, how we may work around some of these restrictions.</p>
<p>In fact: Mobile Facebook is quite disappointing, be it whether you access it via the App or the browser. Custom content on app driven canvas pages and page favorites don’t display! Even promoting their link on the wall will not trigger any display. There are some workarounds by using different browsers where you can modify browser settings and simulate a desktop browser, but that’s not a solution for the masses.</p>
<p>Facebook is not here to promote YOUR site but just to grab your content for it’s own purpose.</p>
<ul>
<li>We will show you how to work around the problem and take advantage of the FB App and Mobile Site to get most out of it. The goal is to achieve that Facebook works for you and not you for Facebook.</li>
</ul>
<ul>
<li>We will also come back to the desktop version of Facebook, showing how to build the most neutral and minimalist Facebook page for full and perfect control of all your content.</li>
</ul>
<span id="Schedule"><h3>Schedule</h3></span>
<p>The Ycademy Online Seminar will take place on April 28/29, 2012 starting daily as usual at 1 p.m. London Time and closing at 9 p.m. London time.</p>
<span id="Materials"><h3>Materials</h3></span>
<p>All materials and scripts are provided and included.</p>
<span id="Tickets_and_Discounts"><h3>Tickets and Discounts</h3></span>
<p>The cost for this seminar is $85; discounts as usual for Ycademy Pros (please mail Bianca at bianca(at)ycademy.com for the coupon code.</p>
<p>Click on the below image to get your ticket.</p>
<p><a href="http://hiod.com/shop/ycademy-online-seminar-tickets/ycademy-online-seminar/" target="_blank"><img class="alignnone size-large wp-image-22796" title="Ycademy April Seminar Ticket" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/512x512-ycademy-shop-1-460x460.png" alt="" width="460" height="460" /></a></p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/" title="mobile content caching strategies">mobile content caching strategies</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/" title="mobile developer seminars">mobile developer seminars</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/facebook-and-mobile-web-seminar-by-ycademy/' rel='bookmark' title='Facebook and Mobile Web Seminar by Ycademy'>Facebook and Mobile Web Seminar by Ycademy</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-january-2012/' rel='bookmark' title='Ycademy Online Seminar January 2012'>Ycademy Online Seminar January 2012</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-may-2011/' rel='bookmark' title='Ycademy Online Seminar May 2011'>Ycademy Online Seminar May 2011</a></li>
<li><a href='http://yorgonestoridis.com/media-marketing-publishing/facebook-ycademy/' rel='bookmark' title='Facebook Online Seminar by Ycademy'>Facebook Online Seminar by Ycademy</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/' rel='bookmark' title='Facebook Strategy with WordPress'>Facebook Strategy with WordPress</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-apri-2012/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Happy Valentine</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/happy-valentine/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/happy-valentine/#comments</comments>
		<pubDate>Tue, 14 Feb 2012 08:39:13 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Blog Master Class]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Semiomantics Design]]></category>
		<category><![CDATA[Semiomantics XO]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WP Best]]></category>
		<category><![CDATA[yorgo Design]]></category>
		<category><![CDATA[Custom]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Happy]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Nestoridis]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Semiomantics XO for WordPress]]></category>
		<category><![CDATA[Social]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Valentine]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[XO Theme]]></category>
		<category><![CDATA[Yorgo]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22586</guid>
		<description><![CDATA[Enjoy your Valentine!

Related posts:
Happy New Year After Effects
How to Customize your WordPress Typography
12 Principles of Animation with After Effects

Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/happy-valentine-gals-and-guys/' rel='bookmark' title='Happy Valentine Gals and Guys'>Happy Valentine Gals and Guys</a></li>
<li><a href='http://yorgonestoridis.com/design/happy-new-year-after-effects/' rel='bookmark' title='Happy New Year After Effects'>Happy New Year After Effects</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-customize-your-wordpress-typography/' rel='bookmark' title='How to Customize your WordPress Typography'>How to Customize your WordPress Typography</a></li>
<li><a href='http://yorgonestoridis.com/design/happy-new-year-design/' rel='bookmark' title='Happy New Year'>Happy New Year</a></li>
<li><a href='http://yorgonestoridis.com/design/12-principles-of-animation-with-after-effects/' rel='bookmark' title='12 Principles of Animation with After Effects'>12 Principles of Animation with After Effects</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Enjoy your Valentine!</p>
<p>Related posts:<br />
Happy New Year After Effects<br />
How to Customize your WordPress Typography<br />
12 Principles of Animation with After Effects</p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/happy-valentine/" title="renaldo ricketts">renaldo ricketts</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/happy-valentine-gals-and-guys/' rel='bookmark' title='Happy Valentine Gals and Guys'>Happy Valentine Gals and Guys</a></li>
<li><a href='http://yorgonestoridis.com/design/happy-new-year-after-effects/' rel='bookmark' title='Happy New Year After Effects'>Happy New Year After Effects</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-customize-your-wordpress-typography/' rel='bookmark' title='How to Customize your WordPress Typography'>How to Customize your WordPress Typography</a></li>
<li><a href='http://yorgonestoridis.com/design/happy-new-year-design/' rel='bookmark' title='Happy New Year'>Happy New Year</a></li>
<li><a href='http://yorgonestoridis.com/design/12-principles-of-animation-with-after-effects/' rel='bookmark' title='12 Principles of Animation with After Effects'>12 Principles of Animation with After Effects</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/happy-valentine/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Customize your WordPress Typography</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-customize-your-wordpress-typography/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-customize-your-wordpress-typography/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 18:32:49 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Elegant Web Design]]></category>
		<category><![CDATA[Elegant WordPress]]></category>
		<category><![CDATA[Fonts]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Semiomantics XO]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Development]]></category>
		<category><![CDATA[Best WordPress typography]]></category>
		<category><![CDATA[Semiomantics XO typography]]></category>
		<category><![CDATA[Typography on WordPress]]></category>
		<category><![CDATA[YorgoLive Calls]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22575</guid>
		<description><![CDATA[Basic CSS3 to Customize your WordPress Theme With the increasing browser compatibility of CSS3, additional customization of websites is in the reach of most anyone (Even a Monkey can do it, according to Nikos Advertizopoulos …). Tonight we will start with a series of calls to become familiar with the possibilities arising from the use of CSS3 on WordPress to improve typography and font styles. You may follow the progress of the work at the Ycademy Demo Site which features the Semiomantics XO Theme. Looking forward to seeing you on YorgoLive tonight. Incoming search terms:wordpress Typographycustom typography wordpresshow to customize typographyhow to customize your wordpress teamtypography customization wordpresstypography wordpress 2012Related posts: How to Customize WordPress 2 How to Customize WordPress Semiomantics XO Transparent WordPress Drafts Customize WordPress with Semiomantics XO XO Photo Press WordPress Theme
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-customize-semiomantics-thesis/' rel='bookmark' title='How to Customize WordPress 2'>How to Customize WordPress 2</a></li>
<li><a href='http://yorgonestoridis.com/web-design/how-to-customize-wordpress/' rel='bookmark' title='How to Customize WordPress'>How to Customize WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/' rel='bookmark' title='Semiomantics XO Transparent WordPress Drafts'>Semiomantics XO Transparent WordPress Drafts</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/customize-wordpress-with-semiomantics-xo/' rel='bookmark' title='Customize WordPress with Semiomantics XO'>Customize WordPress with Semiomantics XO</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/' rel='bookmark' title='XO Photo Press WordPress Theme'>XO Photo Press WordPress Theme</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Basic_CSS3_to_Customize_your_WordPress_Theme"><h2>Basic CSS3 to Customize your WordPress Theme</h2></span>
<p>With the increasing browser compatibility of CSS3, additional customization of websites is in the reach of most anyone (Even a Monkey can do it, according to Nikos Advertizopoulos …). Tonight we will start with a series of calls to become familiar with the possibilities arising from the use of CSS3 on WordPress to improve typography and font styles.</p>
<p>You may follow the progress of the work at the<a title="Custom Typography on wordPress" href="http://typography.ycademy.net" target="_blank"> Ycademy Demo Site</a> which features the Semiomantics XO Theme.</p>
<p><img class="alignnone size-large wp-image-22576" title="Typography on WordPress" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/typography-slide-460x213.png" alt="Typography on WordPress" width="460" height="213" /></p>
<p>Looking forward to seeing you on<a title="Daily Online Trainings Ycademy" href="http://yorgolive.com" target="_blank"> YorgoLive</a> tonight.</p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-customize-your-wordpress-typography/" title="wordpress Typography">wordpress Typography</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-customize-your-wordpress-typography/" title="custom typography wordpress">custom typography wordpress</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-customize-your-wordpress-typography/" title="how to customize typography">how to customize typography</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-customize-your-wordpress-typography/" title="how to customize your wordpress team">how to customize your wordpress team</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-customize-your-wordpress-typography/" title="typography customization wordpress">typography customization wordpress</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-customize-your-wordpress-typography/" title="typography wordpress 2012">typography wordpress 2012</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-customize-semiomantics-thesis/' rel='bookmark' title='How to Customize WordPress 2'>How to Customize WordPress 2</a></li>
<li><a href='http://yorgonestoridis.com/web-design/how-to-customize-wordpress/' rel='bookmark' title='How to Customize WordPress'>How to Customize WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/' rel='bookmark' title='Semiomantics XO Transparent WordPress Drafts'>Semiomantics XO Transparent WordPress Drafts</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/customize-wordpress-with-semiomantics-xo/' rel='bookmark' title='Customize WordPress with Semiomantics XO'>Customize WordPress with Semiomantics XO</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/' rel='bookmark' title='XO Photo Press WordPress Theme'>XO Photo Press WordPress Theme</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-customize-your-wordpress-typography/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Facebook Strategy with WordPress</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 18:51:29 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Best Facebook Page]]></category>
		<category><![CDATA[Best Facebook Pages]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Facebook Advertising]]></category>
		<category><![CDATA[Facebook Developments]]></category>
		<category><![CDATA[Facebook MArketing]]></category>
		<category><![CDATA[Facebook Marketing Ycademy]]></category>
		<category><![CDATA[Facebook Online Seminar]]></category>
		<category><![CDATA[Facebook Optimization]]></category>
		<category><![CDATA[Facebook Pages]]></category>
		<category><![CDATA[Facebook Shop]]></category>
		<category><![CDATA[Facebook Ycademy]]></category>
		<category><![CDATA[Facebook YORGOO]]></category>
		<category><![CDATA[Google +]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Marketing Herbalife on Twitter Facebook and Google]]></category>
		<category><![CDATA[Online Publishing]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Publishing]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Semiomantics Best FB]]></category>
		<category><![CDATA[Semiomantics Facebook Developments]]></category>
		<category><![CDATA[Semiomantics XO]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[Social Network Publishing]]></category>
		<category><![CDATA[Social Network Publishing Seminar]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[Web Master Training]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Development]]></category>
		<category><![CDATA[WP Best]]></category>
		<category><![CDATA[WP Best Business Theme]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>
		<category><![CDATA[Facebook Reveal Page]]></category>
		<category><![CDATA[Facebook Strategies]]></category>
		<category><![CDATA[social media marketing]]></category>
		<category><![CDATA[WordPress for Facebook]]></category>
		<category><![CDATA[Ycademy]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22367</guid>
		<description><![CDATA[10 Steps to Implement your Facebook Strategy with WordPress Implementing your Facebook Strategy will be at the center of the November Ycademy Seminar. This hands-on Seminar and Workshop will stretch over two days and build with participants an eye-ball-twisting Facebook presence. See the seminar schedule at the bottom of the post. The Seminar is designed for WordPress Developers and WP users who are looking for high productivity and customized publishing and marketing solutions. 11 Efficient Facebook Strategies This topic deals with efficient strategies which will efficiently improve your Facebook presence. 7 Ways to jeopardize your Facebook success for sure Surfing through Facebook we notice some common errors well intended people commit when building their Facebook presence. We will discuss these issues and show you how to eliminate them from your personal or business Facebook. 4 Important Facebook features to focus on While content is king, there are different ways of making it accessible to visitors. We will discuss the recent changes Facebook has implemented and show you where the focus should be in order to improve your visibility, traffic and business or network expansion on Facebook. Facebook Privacy and Accessibility settings Function of your strategy we will define and optimize [...]
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wordpress-on-facebook/' rel='bookmark' title='WordPress on Facebook'>WordPress on Facebook</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/facebook-and-mobile-web-seminar-by-ycademy/' rel='bookmark' title='Facebook and Mobile Web Seminar by Ycademy'>Facebook and Mobile Web Seminar by Ycademy</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/facebook-marketing-2-2/' rel='bookmark' title='Facebook Marketing 2'>Facebook Marketing 2</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wordpress-for-facebook-fan-pages-with-fblaster/' rel='bookmark' title='WordPress for Facebook Fan Pages with FBlaster'>WordPress for Facebook Fan Pages with FBlaster</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-optimization-for-facebook/' rel='bookmark' title='Semiomantics Optimization for Facebook'>Semiomantics Optimization for Facebook</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Steps_to_Implement_your_Facebook_Strategy_with_WordPress"><h2>10 Steps to Implement your Facebook Strategy with WordPress</h2></span>
<div class='toc wptoc'>
<h2>Contents</h2>
<ol class='toc-odd level-1'>
	<li>
		<a href="#Steps_to_Implement_your_Facebook_Strategy_with_WordPress">10 Steps to Implement your Facebook Strategy with WordPress</a>
		<ol class='toc-even level-2'>
			<li>
				<a href="#Efficient_Facebook_Strategies">11 Efficient Facebook Strategies</a>
			</li>
			<li>
				<a href="#Ways_to_jeopardize_your_Facebook_success_for_sure">7 Ways to jeopardize your Facebook success for sure</a>
			</li>
			<li>
				<a href="#Important_Facebook_features_to_focus_on">4 Important Facebook features to focus on</a>
			</li>
			<li>
				<a href="#Facebook_Privacy_and_Accessibility_settings">Facebook Privacy and Accessibility settings</a>
			</li>
			<li>
				<a href="#Workshop:_Information_and_Profile">Workshop: Information and Profile</a>
			</li>
			<li>
				<a href="#Friends_Fans_and_Subscriptions">Friends, Fans and Subscriptions</a>
			</li>
			<li>
				<a href="#Facebook_Pages">Facebook Pages</a>
			</li>
			<li>
				<a href="#Workshop:_Build_a_simple_Facebook_page">Workshop: Build a simple Facebook page</a>
			</li>
			<li>
				<a href="#Creative_and_useful_Facebook_Page_Content">Creative and useful Facebook Page Content</a>
			</li>
			<li>
				<a href="#Integrating_WordPress_with_Facebook">Integrating WordPress with Facebook</a>
			</li>
			<li>
				<a href="#Workshop:_Build_your_Facebook_with_WordPress">Workshop: Build your Facebook with WordPress</a>
				<ol class='toc-odd level-3'>
					<li>
						<a href="#Create_Unlimited_Facebook_Fan_Pages_with_WordPress">Create Unlimited Facebook Fan Pages with WordPress</a>
					</li>
					<li>
						<a href="#Increase_Likes_by_150_with_Reveal_Like_Tab_Gateways">Increase Likes by 150% with Reveal “Like” Tab Gateways</a>
					</li>
					<li>
						<a href="#Unlimited_Customization_Options_When_Designing_Your_Fan_Pages">Unlimited Customization Options When Designing Your Fan Pages</a>
					</li>
					<li>
						<a href="#Create_Unlimited_Custom_Pages_with_the_WordPress_Page_Editor">Create Unlimited Custom Pages with the WordPress Page Editor</a>
					</li>
					<li>
						<a href="#Create_Custom_Menus_and_Navigation_with_Just_a_Few_Clicks">Create Custom Menus and Navigation with Just a Few Clicks</a>
					</li>
					<li>
						<a href="#Comments_Like_Send_and_Over_50_Custom_Shortcodes_for_Enhanced_Customization">Comments, Like, Send and Over 50+ Custom Shortcodes for Enhanced Customization</a>
					</li>
					<li>
						<a href="#Facebook_Open_Graph_Integration_for_Enhanced_Facebook_Integration_and_Google_SEO">Facebook Open Graph Integration for Enhanced Facebook Integration and Google SEO</a>
					</li>
					<li>
						<a href="#Auto_Post_to_Facebook_From_Your_WordPress_Blog">Auto Post to Facebook From Your WordPress Blog</a>
					</li>
					<li>
						<a href="#Use_Your_Facebook_Albums_and_Photos_on_Your_Blog_and_Fan_Pages">Use Your Facebook Albums and Photos on Your Blog and Fan Pages</a>
					</li>
					<li>
						<a href="#Add_Google_Maps_to_Your_Facebook_Fan_Pages">Add Google Maps to Your Facebook Fan Pages</a>
					</li>
					<li>
						<a href="#Create_Squeeze_and_Sales_Pages_with_Just_a_Few_Clicks_on_Facebook">Create Squeeze and Sales Pages with Just a Few Clicks on Facebook</a>
					</li>
				</ol>
			<li>
				<a href="#Workshop:_Add_Social_Network_features_to_your_WordPress">Workshop: Add Social Network features to your WordPress</a>
			</li>
			<li>
				<a href="#Selective_Access_to_your_FB_Content">Selective Access to your FB Content</a>
			</li>
		</ol>
	<li>
		<a href="#Seminar_Schedule">Seminar Schedule</a>
		<ol class='toc-even level-2'>
			<li>
				<a href="#Time">Time</a>
			</li>
			<li>
				<a href="#Materials">Materials</a>
			</li>
			<li>
				<a href="#Tickets_and_Price">Tickets and Price</a>
			</li>
</ol>
</ol>
</ol>
</div>
<div class='wptoc-end'> </div>
<p>Implementing your Facebook Strategy will be at the center of the November Ycademy Seminar. This hands-on Seminar and Workshop will stretch over two days and build with participants an eye-ball-twisting Facebook presence. See the seminar schedule at the bottom of the post.</p>
<p>The Seminar is designed for WordPress Developers and WP users who are looking for high productivity and customized publishing and marketing solutions.</p>
<span id="Efficient_Facebook_Strategies"><h3>11 Efficient Facebook Strategies</h3></span>
<p>This topic deals with efficient strategies which will efficiently improve your Facebook presence.</p>
<div id="attachment_22372" class="wp-caption alignnone" style="width: 525px"><a title="Semiomantics Facebook Page" href="http://facebook.com/semiomantics" rel="me" target="_blank"><img class="size-full wp-image-22372 " title="fab520" src="http://yorgonestoridis.com/wp-content/uploads/2011/11/fab520.png" alt="Best Facebook Pages" width="515" height="591" /></a><p class="wp-caption-text">Visit the Semiomantics Facebook Page</p></div>
<span id="Ways_to_jeopardize_your_Facebook_success_for_sure"><h3>7 Ways to jeopardize your Facebook success for sure</h3></span>
<p>Surfing through Facebook we notice some common errors well intended people commit when building their Facebook presence. We will discuss these issues and show you how to eliminate them from your personal or business Facebook.</p>
<span id="Important_Facebook_features_to_focus_on"><h3>4 Important Facebook features to focus on</h3></span>
<p>While content is king, there are different ways of making it accessible to visitors. We will discuss the recent changes Facebook has implemented and show you where the focus should be in order to improve your visibility, traffic and business or network expansion on Facebook.</p>
<span id="Facebook_Privacy_and_Accessibility_settings"><h3>Facebook Privacy and Accessibility settings</h3></span>
<p>Function of your strategy we will define and optimize privacy settings in order to grant potentially interested visitors access to relevant information. Privacy, Accessibility and List-building as well as Targeted Communication are the essentials of this key session.</p>
<span id="Workshop:_Information_and_Profile"><h3>Workshop: Information and Profile</h3></span>
<p>For people looking for you, your business, services or products, your Profile and Info page are of the utmost importance, the more that your info is visible from outside Facebook and therefore Google efficient. We will set up with participants an efficient Info Page.</p>
<span id="Friends_Fans_and_Subscriptions"><h3>Friends, Fans and Subscriptions</h3></span>
<p>We will discuss the recent changes implemented by Facebook and how they impact on our strategies.  Friends, Fans and Subscription features impact on the way we expand our network and influence on Facebook.</p>
<span id="Facebook_Pages"><h3>Facebook Pages</h3></span>
<p>Overview of the Facebook Page feature. Integration techniques, Apps, Content, Canvas and Pages.</p>
<span id="Workshop:_Build_a_simple_Facebook_page"><h3>Workshop: Build a simple Facebook page</h3></span>
<p>The focus is on the technical set-up of a Facebook Page. As  content we will use a graphic, picture of video.</p>
<span id="Creative_and_useful_Facebook_Page_Content"><h3>Creative and useful Facebook Page Content</h3></span>
<p>What is it you actually wish to display on your Facebook page? In fact there is no limit and it depends entirely on your strategy.</p>
<span id="Integrating_WordPress_with_Facebook"><h3>Integrating WordPress with Facebook</h3></span>
<p>This is the center piece of the seminar. Creating Facebook Page right from your WordPress site is now possible. We will set up a reveal page and different Facebook pages depending on participants needs. In fact we show you how to create a whole website in Facebook, straight from your WordPress.</p>
<p>While this works with most any WordPress 3.1 enabled Theme, we will demonstrate the integration with <a title="Smiomantics XO WordPress Framework and Theme" href="http://semiomantics.com" target="_blank">Semiomantics XO</a>.</p>
<p>In fact we will work with a professional plugin modified for Semiomantics XO.</p>
<span id="Workshop:_Build_your_Facebook_with_WordPress"><h3>Workshop: Build your Facebook with WordPress</h3></span>
<p>The Seminar will guide you to master the following and more:</p>
<ul>
<li>
<span id="Create_Unlimited_Facebook_Fan_Pages_with_WordPress"><h4>Create Unlimited Facebook Fan Pages with WordPress</h4></span>
</li>
<li>
<span id="Increase_Likes_by_150_with_Reveal_Like_Tab_Gateways"><h4>Increase Likes by 150% with Reveal “Like” Tab Gateways</h4></span>
</li>
<li>
<span id="Unlimited_Customization_Options_When_Designing_Your_Fan_Pages"><h4>Unlimited Customization Options When Designing Your Fan Pages</h4></span>
</li>
<li>
<span id="Create_Unlimited_Custom_Pages_with_the_WordPress_Page_Editor"><h4>Create Unlimited Custom Pages with the WordPress Page Editor</h4></span>
</li>
<li>
<span id="Create_Custom_Menus_and_Navigation_with_Just_a_Few_Clicks"><h4>Create Custom Menus and Navigation with Just a Few Clicks</h4></span>
</li>
<li>
<span id="Comments_Like_Send_and_Over_50_Custom_Shortcodes_for_Enhanced_Customization"><h4>Comments, Like, Send and Over 50+ Custom Shortcodes for Enhanced Customization</h4></span>
</li>
<li>
<span id="Facebook_Open_Graph_Integration_for_Enhanced_Facebook_Integration_and_Google_SEO"><h4>Facebook Open Graph Integration for Enhanced Facebook Integration and Google SEO</h4></span>
</li>
<li>
<span id="Auto_Post_to_Facebook_From_Your_WordPress_Blog"><h4>Auto Post to Facebook From Your WordPress Blog</h4></span>
</li>
<li>
<span id="Use_Your_Facebook_Albums_and_Photos_on_Your_Blog_and_Fan_Pages"><h4>Use Your Facebook Albums and Photos on Your Blog and Fan Pages</h4></span>
</li>
<li>
<span id="Add_Google_Maps_to_Your_Facebook_Fan_Pages"><h4>Add Google Maps to Your Facebook Fan Pages</h4></span>
</li>
<li>
<span id="Create_Squeeze_and_Sales_Pages_with_Just_a_Few_Clicks_on_Facebook"><h4>Create Squeeze and Sales Pages with Just a Few Clicks on Facebook</h4></span>
</li>
</ul>
<span id="Workshop:_Add_Social_Network_features_to_your_WordPress"><h3>Workshop: Add Social Network features to your WordPress</h3></span>
<p>Add Facebook related widgets to your front and/or content pages. Google+ and Twitter buttons. Pull in Facebook Albums, Events, like Buttons and more. Use Facebook Connect to log in to or to register with your blog.</p>
<span id="Selective_Access_to_your_FB_Content"><h3>Selective Access to your FB Content</h3></span>
<p>Create content which is only accessible after visitors clicked the “Like” button. A smashing filter which allows you to manage accessibility right from your XO.</p>
<span id="Seminar_Schedule"><h2>Seminar Schedule</h2></span>
<span id="Time"><h3>Time</h3></span>
<p>Saturday and Sunday November 26/27, 2011.</p>
<p>We start at 1 pm London Time and end at 9 pm London time both days.</p>
<span id="Materials"><h3>Materials</h3></span>
<p>You need a WordPress blog preferably with FTP access.</p>
<p>Scripts and all other materials are provided. <strong></strong></p>
<p><strong>We will install the necessary scripts for you previous to the Seminar; please get your Tickets early.</strong> If we are not yet in possession of the FTP access to your site, please send it by email to Bianca Gubalke at bianca(at)ycademy.com.</p>
<span id="Tickets_and_Price"><h3>Tickets and Price</h3></span>
<p>The Price for Participating, Materials and access to recordings is $85.</p>
<div id="attachment_22373" class="wp-caption alignnone" style="width: 508px"><a title="Ycademy Seminar Ticket" href="http://shop.yorgonestoridis.com/web-design/implementing-your-facebook-strategy/" rel="me" target="_blank"><img class="size-full wp-image-22373 " title="ycademy-seminar-tickets" src="http://yorgonestoridis.com/wp-content/uploads/2011/11/ycademy-seminar-tickets.png" alt="Ycademy Seminar Ticket" width="498" height="498" /></a><p class="wp-caption-text">Click to get your Ticket</p></div>
<p>Discount as usual for Ycademy Pros. Please contact Bianca Gubalke at bianca(at)ycademy.com for the code or any other question you may have pertaining to the Seminar.</p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/" title="social community feature like facebook in wordpress">social community feature like facebook in wordpress</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/" title="creating efficient blog pages in wordpress">creating efficient blog pages in wordpress</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/" title="best facebook strategy">best facebook strategy</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/" title="facebook strategy">facebook strategy</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/" title="strategy for facebook wordpress integration">strategy for facebook wordpress integration</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/" title="integrate wordpress blog with facebook page">integrate wordpress blog with facebook page</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/" title="increase likes on a wordpress post">increase likes on a wordpress post</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/" title="increase likes by 150%">increase likes by 150%</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/" title="implement strategy to add to our number of facebook fan">implement strategy to add to our number of facebook fan</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/" title="how to make your fb profile accessible on google">how to make your fb profile accessible on google</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wordpress-on-facebook/' rel='bookmark' title='WordPress on Facebook'>WordPress on Facebook</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/facebook-and-mobile-web-seminar-by-ycademy/' rel='bookmark' title='Facebook and Mobile Web Seminar by Ycademy'>Facebook and Mobile Web Seminar by Ycademy</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/facebook-marketing-2-2/' rel='bookmark' title='Facebook Marketing 2'>Facebook Marketing 2</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wordpress-for-facebook-fan-pages-with-fblaster/' rel='bookmark' title='WordPress for Facebook Fan Pages with FBlaster'>WordPress for Facebook Fan Pages with FBlaster</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-optimization-for-facebook/' rel='bookmark' title='Semiomantics Optimization for Facebook'>Semiomantics Optimization for Facebook</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis/facebook-strategy-with-wordpress/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to create a Favicon with Photoshop</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-create-a-favicon-with-photoshop/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-create-a-favicon-with-photoshop/#comments</comments>
		<pubDate>Wed, 09 Mar 2011 12:40:12 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Featured Main]]></category>
		<category><![CDATA[Logo Design]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WP Best Shop]]></category>
		<category><![CDATA[Ycademy]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[How to create a Favicon in Photoshop]]></category>
		<category><![CDATA[How to create ICO files in Photoshop]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=20344</guid>
		<description><![CDATA[Create .ICO Files (Favicons) with Photoshop The favicon or icon is part of the customization of a website. The favicons show namely in the browser tabs. Nowadays most browsers will also show .gif and .png icons; the .ico format is preferred by Internet Explorer. A quick and easy way to create a Favicon is by using the online tool put at disposal by favicon.com. A better result can be achieved by editing the favicon in Photoshop; however Photoshop does not support the .ICO format in its native version. A plug-in can remedy. Download and install the Plug-in To start with, download the free Plug-in from Telegraphics. Paste the plug-in file (ICOFormat.8bi, or ICOFormat64.8bi for the 64 bit version) in your Photoshop: …Program Files/Adobe/Photoshop/Plug-ins/File Formats. re-start Photoshop. Parameters you must respect The .ico file format will only be available in Photoshop if you respect the following: Maximum file size 256 x 256 pixels RGB, Bitmap, gray-scale or Indexed mode Maximum 8 bits per channel To save an image as .ico, use “save as” and select from the drop-down the ICO format. How to Create an Icon or Favicon in Photoshop Favicons are small icons, very small icons, since they measure only [...]
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/create-a-favicon-with-photoshop/' rel='bookmark' title='Create a Favicon with Photoshop'>Create a Favicon with Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/web-design/create-butrtons-with-photoshop/' rel='bookmark' title='Create Buttons with Photoshop'>Create Buttons with Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/web-design/logo-design-with-photoshop/' rel='bookmark' title='Logo Design with Photoshop'>Logo Design with Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/resize-a-picture-in-photoshop/' rel='bookmark' title='Resizing Pictures in Photoshop'>Resizing Pictures in Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/create-your-first-flash-document/' rel='bookmark' title='Create your First Flash Document'>Create your First Flash Document</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Create_.ICO_Files_Favicons_with_Photoshop"><h2>Create .ICO Files (Favicons) with Photoshop</h2></span>
<p>The favicon or icon is part of the customization of a website. The favicons show namely in the browser tabs. Nowadays most browsers will also show .gif and .png icons; the .ico format is preferred by Internet Explorer.</p>
<p>A quick and easy way to create a Favicon is by using the online tool put at disposal by <a title="Favicon" href="http://favicon.com" target="_blank">favicon.com</a>. A better result can be achieved by editing the favicon in Photoshop; however Photoshop does not support the .ICO format in its native version. A plug-in can remedy.</p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2011/03/y-icon2a.png"><img class="alignnone size-large wp-image-20360" title="y-icon2a" src="http://yorgonestoridis.com/wp-content/uploads/2011/03/y-icon2a-460x460.png" alt="" width="460" height="460" /></a></p>
<span id="Download_and_install_the_Plug-in"><h3>Download and install the Plug-in</h3></span>
<p>To start with, download the free Plug-in from <a title="Telegraphics" href="http://www.telegraphics.com.au/sw/" target="_blank">Telegraphics</a>.</p>
<p>Paste the plug-in file (ICOFormat.8bi, or ICOFormat64.8bi for the 64 bit version) in your Photoshop: …Program Files/Adobe/Photoshop/Plug-ins/File Formats.</p>
<p>re-start Photoshop.</p>
<span id="Parameters_you_must_respect"><h3>Parameters you must respect</h3></span>
<p>The .ico file format will only be available in Photoshop if you respect the following:</p>
<ol>
<li>Maximum file size 256 x 256 pixels</li>
<li>RGB, Bitmap, gray-scale or Indexed mode</li>
<li>Maximum 8 bits per channel</li>
</ol>
<p>To save an image as .ico, use “save as” and select from the drop-down the ICO format.</p>
<span id="How_to_Create_an_Icon_or_Favicon_in_Photoshop"><h3>How to Create an Icon or Favicon in Photoshop</h3></span>
<p>Favicons are small icons, very small icons, since they measure only 16 x 16 pixels. Designing an Icon is a challenge since its display should be meaningful. To work more comfortably with your photoshop, start your design with a larger square canvas, a multiple of 16 pixels, for example 64 pixels, 128px or 256 pixels.</p>
<p>For the purpose of this exercise I will use a 128 px x 128 px canvas with the following presets:</p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2011/03/icon-preset.png"><img class="alignnone size-large wp-image-20346" title="icon-preset" src="http://yorgonestoridis.com/wp-content/uploads/2011/03/icon-preset-460x339.png" alt="Photoshop Icon Presets" width="460" height="339" /></a></p>
<p>You may save these settings as Preset for further use.</p>
<p>Best results are achieved if you keep your design simple and rich in contrast.</p>
<p><strong>1. Open a new file with the above presets:</strong></p>
<p><strong><a href="http://yorgonestoridis.com/wp-content/uploads/2011/03/icon-tutorial-1.png"><img class="alignnone size-full wp-image-20347" title="icon-tutorial-1" src="http://yorgonestoridis.com/wp-content/uploads/2011/03/icon-tutorial-1.png" alt="Icon Tutorial 1" width="156" height="161" /></a></strong></p>
<p><strong>2. Fill with your background color (or pattern)</strong></p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2011/03/icon-tutorial-2.png"><img class="alignnone size-full wp-image-20348" title="icon-tutorial-2" src="http://yorgonestoridis.com/wp-content/uploads/2011/03/icon-tutorial-2.png" alt="Icon Tutorial 2" width="167" height="176" /></a></p>
<p><strong>3. Add content</strong></p>
<p>Best result with vector graphics, custom shapes, good fonts  and such likes; just create a new layer and add …</p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2011/03/icon-tutorial-3.png"><img class="alignnone size-full wp-image-20349" title="icon-tutorial-3" src="http://yorgonestoridis.com/wp-content/uploads/2011/03/icon-tutorial-3.png" alt="Icon Tutorial 3" width="153" height="158" /></a></p>
<p><strong>4. Resize</strong></p>
<p>Resize to 16px x 16px and resample selecting ‘Bicubic Sharper’:</p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2011/03/icon-tutorial-4.png"><img class="alignnone size-full wp-image-20350" title="icon-tutorial-4" src="http://yorgonestoridis.com/wp-content/uploads/2011/03/icon-tutorial-4.png" alt="Icon Tutorial 4" width="399" height="503" /></a></p>
<p>We get now:</p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2011/03/icon-tutorial-5.png"><img class="alignnone size-full wp-image-20352" title="icon-tutorial-5" src="http://yorgonestoridis.com/wp-content/uploads/2011/03/icon-tutorial-5.png" alt="Icon Tutorial 5" width="143" height="129" /></a></p>
<p><strong>5. Save as .ICO</strong></p>
<p>Now “Save as” (don’t use “Save for Web and Devices”) and select the ICO format. Rename the image to favicon.ico:</p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2011/03/icon-tutorial-6.png"><img class="alignnone size-large wp-image-20353" title="icon-tutorial-6" src="http://yorgonestoridis.com/wp-content/uploads/2011/03/icon-tutorial-6-460x519.png" alt="Icon Tutorial 6" width="460" height="519" /></a></p>
<p><strong>6. Embed your new Favicon</strong></p>
<p>Most browsers will find your favicon.ico automatically if you just load it into your website’s root folder (where the index.html is located), others are looking for a direct link to the favicon. To help these last browsers just add the following lines to your header (between the &lt;head&gt; … &lt;/head&gt; tags):</p>
<pre class="brush: php; title: ; notranslate">&lt;link rel=&quot;Shortcut Icon&quot; href=&quot;/favicon.ico&quot;&gt;</pre>
<p>Load your favicon to the root folder of your domain and make sure it’s called ‘favicon.ico’.</p>
<p>That’s it.</p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-create-a-favicon-with-photoshop/" title="Y Icon">Y Icon</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-create-a-favicon-with-photoshop/" title="favicon Y">favicon Y</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-create-a-favicon-with-photoshop/" title="Y Ico">Y Ico</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-create-a-favicon-with-photoshop/" title="Y favicon">Y favicon</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-create-a-favicon-with-photoshop/" title="ICOFormat64 8bi">ICOFormat64 8bi</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-create-a-favicon-with-photoshop/" title="Y favicons">Y favicons</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-create-a-favicon-with-photoshop/" title="photoshop ico">photoshop ico</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-create-a-favicon-with-photoshop/" title="how to make settings icon in photoshop">how to make settings icon in photoshop</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-create-a-favicon-with-photoshop/" title="ico files download">ico files download</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-create-a-favicon-with-photoshop/" title="how to create a favicon in photoshop">how to create a favicon in photoshop</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/create-a-favicon-with-photoshop/' rel='bookmark' title='Create a Favicon with Photoshop'>Create a Favicon with Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/web-design/create-butrtons-with-photoshop/' rel='bookmark' title='Create Buttons with Photoshop'>Create Buttons with Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/web-design/logo-design-with-photoshop/' rel='bookmark' title='Logo Design with Photoshop'>Logo Design with Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/resize-a-picture-in-photoshop/' rel='bookmark' title='Resizing Pictures in Photoshop'>Resizing Pictures in Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/create-your-first-flash-document/' rel='bookmark' title='Create your First Flash Document'>Create your First Flash Document</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/how-to-create-a-favicon-with-photoshop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best WP Shop Custom Design</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/best-wp-shop-custom-design/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/best-wp-shop-custom-design/#comments</comments>
		<pubDate>Mon, 28 Feb 2011 09:24:27 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Featured Main]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Semiomantics Shop]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Best WordPress Shop]]></category>
		<category><![CDATA[Custom WordPress Shop]]></category>
		<category><![CDATA[Semiomantics Ecommerce]]></category>
		<category><![CDATA[WP Shop Theme]]></category>
		<category><![CDATA[Ycademy Seminar]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=20281</guid>
		<description><![CDATA[WordPress Shop Theme Customization The week-end was busy with the Ycademy Seminar and the new doors opened by the Seminar Content lead to a busy schedule for our daily calls in the near future. There are two areas of development: 1. WordPress Shop Theme Customization and 2. WordPress Customization fo r the Mobile Web This week we will focus on WP Shop Customization on the base of the Semiomantics eShop. The Semiomantics Shop The Semiomantics eShop is based on a clean and user-friendly WordPress Theme which has been adapted to comply with Semiomantics standards and requirements for high visibility and performance. The Theme is ideal for customers with a straight forward business selling namely to a targeted local audience. I say this right at the beginning: the shop does not offer multi-currency features or tax rates by country or state. Besides this the Shop is flexible and bears quite a number of interesting built in features also for affiliate marketers as well as for people who would like to offer to their customers an affiliate program. Considering the price, the Semiomantics eShop is the best deal online, second only to the Semiomantics Total E-commerce solution, which is more complex but [...]
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/customizing-wp-shop-theme/' rel='bookmark' title='Customizing WP Shop Theme'>Customizing WP Shop Theme</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/wordpress-shop-version-3-by-semiomantics/' rel='bookmark' title='WordPress Shop Version 3 by Semiomantics'>WordPress Shop Version 3 by Semiomantics</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/mobile-wordpress-and-shop/' rel='bookmark' title='Mobile WordPress and Shop'>Mobile WordPress and Shop</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/transparent-wordpress-theme-design/' rel='bookmark' title='Transparent WordPress Theme Design'>Transparent WordPress Theme Design</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/google-top-10-2/' rel='bookmark' title='How to Rank Google Top 10 with your Shop'>How to Rank Google Top 10 with your Shop</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="WordPress_Shop_Theme_Customization"><h2>WordPress Shop Theme Customization</h2></span>
<p>The week-end was busy with the Ycademy Seminar and the new doors opened by the Seminar Content lead to a busy schedule for our daily calls in the near future. There are two areas of development:</p>
<p>1. WordPress Shop Theme Customization and</p>
<p>2. WordPress Customization fo r the Mobile Web</p>
<p>This week we will focus on WP Shop Customization on the base of the Semiomantics eShop.</p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2011/02/cwd.png"><img class="alignnone size-large wp-image-20282" title="cwd" src="http://yorgonestoridis.com/wp-content/uploads/2011/02/cwd-460x460.png" alt="" width="460" height="460" /></a></p>
<span id="The_Semiomantics_Shop"><h3>The Semiomantics Shop</h3></span>
<p>The Semiomantics eShop is based on a clean and user-friendly WordPress Theme which has been adapted to comply with Semiomantics standards and requirements for high visibility and performance. The Theme is ideal for customers with a straight forward business selling namely to a targeted local audience. I say this right at the beginning: the shop does not offer multi-currency features or tax rates by country or state.</p>
<p>Besides this the Shop is flexible and bears quite a number of interesting built in features also for affiliate marketers as well as for people who would like to offer to their customers an affiliate program.</p>
<p>Considering the price, the Semiomantics eShop is the best deal online, second only to the Semiomantics Total E-commerce solution, which is more complex but satisfies the highest commercial aspirations and ambitions.</p>
<p>Most people needing an online shop will be happy with the Semiomantics Shop as it is the ideal platform for small business.</p>
<span id="Semiomantics_Shop_Customization_for_WordPress"><h3>Semiomantics Shop Customization for WordPress</h3></span>
<p>Our next few calls will focus on customization. As all Ycademy Seminar Participants have an own author website based on Semiomantics XO we will implement on the store site the branding and customization criteria used on XO.</p>
<p>First steps include colors and fonts as well as branding icons and logos.</p>
<p>The second phase will take care of product specific requirements: physical products vs. digital products for example and their delivery.</p>
<p>The Third phase will take care of marketing as well as of the affiliate program.</p>
<span id="Daily_Calls"><h3>Daily Calls</h3></span>
<p>As you see from the above, our next few calls will be workshops where we will help each participant to implement and customize the personal shop. It’s a great way also to look in more depths into some of the Shop features we may have gone through too fast at the Seminar. I am looking forward to working with you on your personal projects.</p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/best-wp-shop-custom-design/" title="beer shop">beer shop</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/best-wp-shop-custom-design/" title="wp store customize">wp store customize</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/best-wp-shop-custom-design/" title="wordpress shop with custom currency">wordpress shop with custom currency</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/best-wp-shop-custom-design/" title="wordpress customization">wordpress customization</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/best-wp-shop-custom-design/" title="best shop design">best shop design</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/best-wp-shop-custom-design/" title="wp store wordpress currency">wp store wordpress currency</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/best-wp-shop-custom-design/" title="wordpress shop custom">wordpress shop custom</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/best-wp-shop-custom-design/" title="WpShop ideal">WpShop ideal</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/best-wp-shop-custom-design/" title="wordpress shop with multiple currency">wordpress shop with multiple currency</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/best-wp-shop-custom-design/" title="wordpress shopp multi currency">wordpress shopp multi currency</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/customizing-wp-shop-theme/' rel='bookmark' title='Customizing WP Shop Theme'>Customizing WP Shop Theme</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/wordpress-shop-version-3-by-semiomantics/' rel='bookmark' title='WordPress Shop Version 3 by Semiomantics'>WordPress Shop Version 3 by Semiomantics</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/mobile-wordpress-and-shop/' rel='bookmark' title='Mobile WordPress and Shop'>Mobile WordPress and Shop</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/transparent-wordpress-theme-design/' rel='bookmark' title='Transparent WordPress Theme Design'>Transparent WordPress Theme Design</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/google-top-10-2/' rel='bookmark' title='How to Rank Google Top 10 with your Shop'>How to Rank Google Top 10 with your Shop</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/best-wp-shop-custom-design/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Photoshop Basics Workshop</title>
		<link>http://yorgonestoridis.com/web-design/photoshop-basics-workshop/</link>
		<comments>http://yorgonestoridis.com/web-design/photoshop-basics-workshop/#comments</comments>
		<pubDate>Wed, 23 Feb 2011 08:02:38 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Featured Main]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design Basics]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[Photoshop Basics Workshop]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=20260</guid>
		<description><![CDATA[More Photoshop Basics Tonight’s call will focus on more Photoshop Basics. The goal is to become familiar with more easy to use features to produce more interesting graphics for advertising or product presentation. I am looking forward to an inspiring session :-). Incoming search terms:Günther Ueckerphotoshop basics workshopguenter ueckerphotoshop design basicsbasics for web designing pdfweb designing basics about photoshop pdfphotoshop web design basicsphotoshop images pdfphotoshop basics pdfphotoshop basics for web designRelated posts: 3D Text with Photoshop Logo Design with Photoshop 3D Photoshop Exercise How to use Displacement Masks in Photoshop Photoshop Workshops
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/web-design/3d-text-with-photoshop/' rel='bookmark' title='3D Text with Photoshop'>3D Text with Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/web-design/logo-design-with-photoshop/' rel='bookmark' title='Logo Design with Photoshop'>Logo Design with Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-3d-design/' rel='bookmark' title='3D Photoshop Exercise'>3D Photoshop Exercise</a></li>
<li><a href='http://yorgonestoridis.com/web-design/how-to-use-displacement-masks-in-photoshop/' rel='bookmark' title='How to use Displacement Masks in Photoshop'>How to use Displacement Masks in Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-workshops/' rel='bookmark' title='Photoshop Workshops'>Photoshop Workshops</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="More_Photoshop_Basics"><h2>More Photoshop Basics</h2></span>
<p>Tonight’s call will focus on more Photoshop Basics. The goal is to become familiar with more easy to use features to produce more interesting graphics for advertising or product presentation.</p>
<p>I am looking forward to an inspiring session :-).</p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2011/02/myway.jpg"><img class="alignnone size-large wp-image-20261" title="Photoshop-Basics" src="http://yorgonestoridis.com/wp-content/uploads/2011/02/myway-460x460.jpg" alt="Photoshop Basics" width="460" height="460" /></a></p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2011/02/myway3.jpg"><img class="alignnone size-large wp-image-20262" title="myway3" src="http://yorgonestoridis.com/wp-content/uploads/2011/02/myway3-460x460.jpg" alt="" width="460" height="460" /></a></p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2011/02/myway4.jpg"><img class="alignnone size-large wp-image-20263" title="myway4" src="http://yorgonestoridis.com/wp-content/uploads/2011/02/myway4-460x460.jpg" alt="" width="460" height="460" /></a></p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/web-design/photoshop-basics-workshop/" title="Günther Uecker">Günther Uecker</a></li><li><a href="http://yorgonestoridis.com/web-design/photoshop-basics-workshop/" title="photoshop basics workshop">photoshop basics workshop</a></li><li><a href="http://yorgonestoridis.com/web-design/photoshop-basics-workshop/" title="guenter uecker">guenter uecker</a></li><li><a href="http://yorgonestoridis.com/web-design/photoshop-basics-workshop/" title="photoshop design basics">photoshop design basics</a></li><li><a href="http://yorgonestoridis.com/web-design/photoshop-basics-workshop/" title="basics for web designing pdf">basics for web designing pdf</a></li><li><a href="http://yorgonestoridis.com/web-design/photoshop-basics-workshop/" title="web designing basics about photoshop pdf">web designing basics about photoshop pdf</a></li><li><a href="http://yorgonestoridis.com/web-design/photoshop-basics-workshop/" title="photoshop web design basics">photoshop web design basics</a></li><li><a href="http://yorgonestoridis.com/web-design/photoshop-basics-workshop/" title="photoshop images pdf">photoshop images pdf</a></li><li><a href="http://yorgonestoridis.com/web-design/photoshop-basics-workshop/" title="photoshop basics pdf">photoshop basics pdf</a></li><li><a href="http://yorgonestoridis.com/web-design/photoshop-basics-workshop/" title="photoshop basics for web design">photoshop basics for web design</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/web-design/3d-text-with-photoshop/' rel='bookmark' title='3D Text with Photoshop'>3D Text with Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/web-design/logo-design-with-photoshop/' rel='bookmark' title='Logo Design with Photoshop'>Logo Design with Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-3d-design/' rel='bookmark' title='3D Photoshop Exercise'>3D Photoshop Exercise</a></li>
<li><a href='http://yorgonestoridis.com/web-design/how-to-use-displacement-masks-in-photoshop/' rel='bookmark' title='How to use Displacement Masks in Photoshop'>How to use Displacement Masks in Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-workshops/' rel='bookmark' title='Photoshop Workshops'>Photoshop Workshops</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/web-design/photoshop-basics-workshop/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Logo Design with Photoshop</title>
		<link>http://yorgonestoridis.com/web-design/logo-design-with-photoshop/</link>
		<comments>http://yorgonestoridis.com/web-design/logo-design-with-photoshop/#comments</comments>
		<pubDate>Mon, 31 Jan 2011 09:44:02 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Featured Main]]></category>
		<category><![CDATA[Logo Design]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[Logo design with Photoshop]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Ycademy]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=19974</guid>
		<description><![CDATA[How to design a simple Logo with Photoshop After a rich Seminar, let’s relax with a simple Logo design at tonight’s call. The exercise will consist in using custom shapes, fonts and styles from Photoshop according to the below samples: Semiomantics Logo A colored version: Semiomantics Logo in Helvetica A neutral version in Helvetica: Semiomantics Logo Impact Arial Version using free fonts: To prepare the session, please download the image and Photoshop file; we will use them as a base and then move on to profit from your creativity:-). I am looking forward to seeing you tonight at the call. Incoming search terms:photoshop slide logosglobal logo design in photoshoplogo design in photoshophow to design a logo in photoshop pdfhow to design logo in photoshopphotoshop simple logoHOW TO DESIGN A LOGO USING PHOTOSHOP PDFlogo design with photoshop pdfhelveticahow to design a logo with photoshop pdfRelated posts: Logo Design Study for Zo Nicholas 3D Text with Photoshop 3D Photoshop Exercise How to use Displacement Masks in Photoshop Create your 3D Logo
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/culture/logo-design-study-for-zo-nicholas/' rel='bookmark' title='Logo Design Study for Zo Nicholas'>Logo Design Study for Zo Nicholas</a></li>
<li><a href='http://yorgonestoridis.com/web-design/3d-text-with-photoshop/' rel='bookmark' title='3D Text with Photoshop'>3D Text with Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-3d-design/' rel='bookmark' title='3D Photoshop Exercise'>3D Photoshop Exercise</a></li>
<li><a href='http://yorgonestoridis.com/web-design/how-to-use-displacement-masks-in-photoshop/' rel='bookmark' title='How to use Displacement Masks in Photoshop'>How to use Displacement Masks in Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/design/create-your-3d-logo/' rel='bookmark' title='Create your 3D Logo'>Create your 3D Logo</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="How_to_design_a_simple_Logo_with_Photoshop"><h2>How to design a simple Logo with Photoshop</h2></span>
<p>After a rich Seminar, let’s relax with a simple Logo design at tonight’s call. The exercise will consist in using custom shapes, fonts and styles from Photoshop according to the below samples:</p>
<span id="Semiomantics_Logo"><h3>Semiomantics Logo</h3></span>
<p>A colored version:</p>
<p><a href="http://yorgonestoridis.com/web-design/logo-design-with-photoshop/"><img class="alignnone size-large wp-image-19975" title="semiomantics-logo" src="http://yorgonestoridis.com/wp-content/uploads/2011/01/semiomantics-logo-460x213.png" alt="Semiomantics Logo" width="460" height="213" /></a></p>
<span id="Semiomantics_Logo_in_Helvetica"><h3>Semiomantics Logo in Helvetica</h3></span>
<p>A neutral version in Helvetica:</p>
<p><img class="alignnone size-large wp-image-19976" title="semiomantics-logo-helvetica" src="http://yorgonestoridis.com/wp-content/uploads/2011/01/semiomantics-logo-helvetica-460x213.png" alt="Semiomantics Logo Helvetica" width="460" height="213" /></p>
<span id="Semiomantics_Logo_Impact_Arial"><h3>Semiomantics Logo Impact Arial</h3></span>
<p>Version using free fonts:</p>
<p><img class="alignnone size-large wp-image-19977" title="semiomantics-logo-impact-arial" src="http://yorgonestoridis.com/wp-content/uploads/2011/01/semiomantics-logo-impact-arial-460x213.png" alt="Semiomantics Logo Impact Arial" width="460" height="213" /></p>
<p>To prepare the session, please download the image and Photoshop file; we will use them as a base and then move on to profit from your creativity:-).</p>
<p><a href="http://yorgonestoridis.com/download/semiomantics-logo.rar"><img class="alignnone size-full wp-image-19978" title="download-ycademy" src="http://yorgonestoridis.com/wp-content/uploads/2011/01/download-ycademy.png" alt="Download Ycademy learning file" width="400" height="100" /></a></p>
<p>I am looking forward to seeing you tonight at the call.</p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/web-design/logo-design-with-photoshop/" title="photoshop slide logos">photoshop slide logos</a></li><li><a href="http://yorgonestoridis.com/web-design/logo-design-with-photoshop/" title="global logo design in photoshop">global logo design in photoshop</a></li><li><a href="http://yorgonestoridis.com/web-design/logo-design-with-photoshop/" title="logo design in photoshop">logo design in photoshop</a></li><li><a href="http://yorgonestoridis.com/web-design/logo-design-with-photoshop/" title="how to design a logo in photoshop pdf">how to design a logo in photoshop pdf</a></li><li><a href="http://yorgonestoridis.com/web-design/logo-design-with-photoshop/" title="how to design logo in photoshop">how to design logo in photoshop</a></li><li><a href="http://yorgonestoridis.com/web-design/logo-design-with-photoshop/" title="photoshop simple logo">photoshop simple logo</a></li><li><a href="http://yorgonestoridis.com/web-design/logo-design-with-photoshop/" title="HOW TO DESIGN A LOGO USING PHOTOSHOP PDF">HOW TO DESIGN A LOGO USING PHOTOSHOP PDF</a></li><li><a href="http://yorgonestoridis.com/web-design/logo-design-with-photoshop/" title="logo design with photoshop pdf">logo design with photoshop pdf</a></li><li><a href="http://yorgonestoridis.com/web-design/logo-design-with-photoshop/" title="helvetica">helvetica</a></li><li><a href="http://yorgonestoridis.com/web-design/logo-design-with-photoshop/" title="how to design a logo with photoshop pdf">how to design a logo with photoshop pdf</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/culture/logo-design-study-for-zo-nicholas/' rel='bookmark' title='Logo Design Study for Zo Nicholas'>Logo Design Study for Zo Nicholas</a></li>
<li><a href='http://yorgonestoridis.com/web-design/3d-text-with-photoshop/' rel='bookmark' title='3D Text with Photoshop'>3D Text with Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-3d-design/' rel='bookmark' title='3D Photoshop Exercise'>3D Photoshop Exercise</a></li>
<li><a href='http://yorgonestoridis.com/web-design/how-to-use-displacement-masks-in-photoshop/' rel='bookmark' title='How to use Displacement Masks in Photoshop'>How to use Displacement Masks in Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/design/create-your-3d-logo/' rel='bookmark' title='Create your 3D Logo'>Create your 3D Logo</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/web-design/logo-design-with-photoshop/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to use Displacement Masks in Photoshop</title>
		<link>http://yorgonestoridis.com/web-design/how-to-use-displacement-masks-in-photoshop/</link>
		<comments>http://yorgonestoridis.com/web-design/how-to-use-displacement-masks-in-photoshop/#comments</comments>
		<pubDate>Wed, 26 Jan 2011 19:00:36 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Featured Main]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[Displacement Masks]]></category>
		<category><![CDATA[Photoshop Displacement Masks]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=19842</guid>
		<description><![CDATA[Text Effects with Displacement Masks Tonight’s short call will focus on using displacement masks in Photoshop. The below image will serve as an example for our exercise. I am looking forward to seeing you there :-). Incoming search terms:photoshop displacement maskdisplacement maskdisplacement mask photoshopdisplacement mask in photoshopusing displacement maskdisplacement masksphotoshop cs4 displacement masktax mart usaphotoshop cs5 displacement maskdisplacement masks in photoshopRelated posts: 3D Text with Photoshop Resizing Pictures in Photoshop Create Buttons with Photoshop Photoshop Workshops 3D Photoshop Exercise
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/web-design/3d-text-with-photoshop/' rel='bookmark' title='3D Text with Photoshop'>3D Text with Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/resize-a-picture-in-photoshop/' rel='bookmark' title='Resizing Pictures in Photoshop'>Resizing Pictures in Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/web-design/create-butrtons-with-photoshop/' rel='bookmark' title='Create Buttons with Photoshop'>Create Buttons with Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-workshops/' rel='bookmark' title='Photoshop Workshops'>Photoshop Workshops</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-3d-design/' rel='bookmark' title='3D Photoshop Exercise'>3D Photoshop Exercise</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Text_Effects_with_Displacement_Masks"><h2>Text Effects with Displacement Masks</h2></span>
<p>Tonight’s short call will focus on using displacement masks in Photoshop. The below image will serve as an example for our exercise.</p>
<p>I am looking forward to seeing you there :-).</p>
<p><a rel="attachment wp-att-19843" href="http://yorgonestoridis.com/web-design/how-to-use-displacement-masks-in-photoshop/attachment/taxmart/"><img class="size-large wp-image-19843 alignnone" title="taxmart" src="http://yorgonestoridis.com/wp-content/uploads/2011/01/taxmart-460x134.jpg" alt="TaxMart" width="460" height="134" /></a></p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/web-design/how-to-use-displacement-masks-in-photoshop/" title="photoshop displacement mask">photoshop displacement mask</a></li><li><a href="http://yorgonestoridis.com/web-design/how-to-use-displacement-masks-in-photoshop/" title="displacement mask">displacement mask</a></li><li><a href="http://yorgonestoridis.com/web-design/how-to-use-displacement-masks-in-photoshop/" title="displacement mask photoshop">displacement mask photoshop</a></li><li><a href="http://yorgonestoridis.com/web-design/how-to-use-displacement-masks-in-photoshop/" title="displacement mask in photoshop">displacement mask in photoshop</a></li><li><a href="http://yorgonestoridis.com/web-design/how-to-use-displacement-masks-in-photoshop/" title="using displacement mask">using displacement mask</a></li><li><a href="http://yorgonestoridis.com/web-design/how-to-use-displacement-masks-in-photoshop/" title="displacement masks">displacement masks</a></li><li><a href="http://yorgonestoridis.com/web-design/how-to-use-displacement-masks-in-photoshop/" title="photoshop cs4 displacement mask">photoshop cs4 displacement mask</a></li><li><a href="http://yorgonestoridis.com/web-design/how-to-use-displacement-masks-in-photoshop/" title="tax mart usa">tax mart usa</a></li><li><a href="http://yorgonestoridis.com/web-design/how-to-use-displacement-masks-in-photoshop/" title="photoshop cs5 displacement mask">photoshop cs5 displacement mask</a></li><li><a href="http://yorgonestoridis.com/web-design/how-to-use-displacement-masks-in-photoshop/" title="displacement masks in photoshop">displacement masks in photoshop</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/web-design/3d-text-with-photoshop/' rel='bookmark' title='3D Text with Photoshop'>3D Text with Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/resize-a-picture-in-photoshop/' rel='bookmark' title='Resizing Pictures in Photoshop'>Resizing Pictures in Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/web-design/create-butrtons-with-photoshop/' rel='bookmark' title='Create Buttons with Photoshop'>Create Buttons with Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-workshops/' rel='bookmark' title='Photoshop Workshops'>Photoshop Workshops</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-3d-design/' rel='bookmark' title='3D Photoshop Exercise'>3D Photoshop Exercise</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/web-design/how-to-use-displacement-masks-in-photoshop/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>3D Text with Photoshop</title>
		<link>http://yorgonestoridis.com/web-design/3d-text-with-photoshop/</link>
		<comments>http://yorgonestoridis.com/web-design/3d-text-with-photoshop/#comments</comments>
		<pubDate>Fri, 21 Jan 2011 08:01:46 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Elegant Web Design]]></category>
		<category><![CDATA[Featured Main]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[3D text]]></category>
		<category><![CDATA[3D Text Photoshop]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=19802</guid>
		<description><![CDATA[Spectacular 3D Text for Print and Web Tonight’s Photoshop Workshop will focus on Styling text, namely to give text a 3D aspect. The step by step walk-through will serve as an introduction to some spectacular effects and features of Photoshop. Effects and Styles The interest of the exercise is in discovering some smashing effects we can achieve with Photoshop without using the 3D tools. We wil also see the number of operations needed to perfectly place shine, glow and shadows to give a glossy, high quality impression. Short Friday Call Please be on time as this exercise will take at least 1 hour to accomplish and understand. I hope you will be as smashed as I am by the result and this final session of our PS Basics workshops. Incoming search terms:3d text to printsee through letters in photoshop3d text in photoshopworkshop photoshop 3d textphotoshop 3d letters3d text styles photoshop3d text photoshop stylesfunny easter eggphotoshop workshop text3d numbers photoshopRelated posts: Book covers and Jewel Cases with Photoshop Photoshop Workshops 3D Photoshop Exercise How to use Photoshop Actions Photoshop Ycademy
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/book-covers-and-jewel-cases-with-photoshop/' rel='bookmark' title='Book covers and Jewel Cases with Photoshop'>Book covers and Jewel Cases with Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-workshops/' rel='bookmark' title='Photoshop Workshops'>Photoshop Workshops</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-3d-design/' rel='bookmark' title='3D Photoshop Exercise'>3D Photoshop Exercise</a></li>
<li><a href='http://yorgonestoridis.com/web-design/how-to-use-photoshop-actions/' rel='bookmark' title='How to use Photoshop Actions'>How to use Photoshop Actions</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/photoshop-ycademy/' rel='bookmark' title='Photoshop Ycademy'>Photoshop Ycademy</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Spectacular_3D_Text_for_Print_and_Web"><h2>Spectacular 3D Text for Print and Web</h2></span>
<p>Tonight’s Photoshop Workshop will focus on Styling text, namely to give text a 3D aspect. The step by step walk-through will serve as an introduction to some spectacular effects and features of Photoshop.</p>
<span id="Effects_and_Styles"><h3><a rel="attachment wp-att-19808" href="http://yorgonestoridis.com/web-design/3d-text-with-photoshop/attachment/505-news1/"><img class="size-large wp-image-19808 alignnone" title="3D Text with Photoshop" src="http://yorgonestoridis.com/wp-content/uploads/2011/01/505-news1-460x213.jpg" alt="3D Text with Photoshop" width="460" height="213" /></a>Effects and Styles</h3></span>
<p>The interest of the exercise is in discovering some smashing effects we can achieve with Photoshop without using the 3D tools.</p>
<p>We wil also see the number of operations needed to perfectly place shine, glow and shadows to give a glossy, high quality impression.</p>
<span id="Short_Friday_Call"><h3>Short Friday Call</h3></span>
<p>Please be on time as this exercise will take at least 1 hour to accomplish and understand. I hope you will be as smashed as I am by the result and this final session of our PS Basics workshops.</p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/web-design/3d-text-with-photoshop/" title="3d text to print">3d text to print</a></li><li><a href="http://yorgonestoridis.com/web-design/3d-text-with-photoshop/" title="see through letters in photoshop">see through letters in photoshop</a></li><li><a href="http://yorgonestoridis.com/web-design/3d-text-with-photoshop/" title="3d text in photoshop">3d text in photoshop</a></li><li><a href="http://yorgonestoridis.com/web-design/3d-text-with-photoshop/" title="workshop photoshop 3d text">workshop photoshop 3d text</a></li><li><a href="http://yorgonestoridis.com/web-design/3d-text-with-photoshop/" title="photoshop 3d letters">photoshop 3d letters</a></li><li><a href="http://yorgonestoridis.com/web-design/3d-text-with-photoshop/" title="3d text styles photoshop">3d text styles photoshop</a></li><li><a href="http://yorgonestoridis.com/web-design/3d-text-with-photoshop/" title="3d text photoshop styles">3d text photoshop styles</a></li><li><a href="http://yorgonestoridis.com/web-design/3d-text-with-photoshop/" title="funny easter egg">funny easter egg</a></li><li><a href="http://yorgonestoridis.com/web-design/3d-text-with-photoshop/" title="photoshop workshop text">photoshop workshop text</a></li><li><a href="http://yorgonestoridis.com/web-design/3d-text-with-photoshop/" title="3d numbers photoshop">3d numbers photoshop</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/book-covers-and-jewel-cases-with-photoshop/' rel='bookmark' title='Book covers and Jewel Cases with Photoshop'>Book covers and Jewel Cases with Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-workshops/' rel='bookmark' title='Photoshop Workshops'>Photoshop Workshops</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-3d-design/' rel='bookmark' title='3D Photoshop Exercise'>3D Photoshop Exercise</a></li>
<li><a href='http://yorgonestoridis.com/web-design/how-to-use-photoshop-actions/' rel='bookmark' title='How to use Photoshop Actions'>How to use Photoshop Actions</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/photoshop-ycademy/' rel='bookmark' title='Photoshop Ycademy'>Photoshop Ycademy</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/web-design/3d-text-with-photoshop/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Free Button Template PSD</title>
		<link>http://yorgonestoridis.com/web-design/free-photoshop-button-template/</link>
		<comments>http://yorgonestoridis.com/web-design/free-photoshop-button-template/#comments</comments>
		<pubDate>Fri, 14 Jan 2011 19:02:37 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Featured Main]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[Free Button PSD]]></category>
		<category><![CDATA[Free Photoshop Button]]></category>
		<category><![CDATA[Free Photoshop Button Template]]></category>
		<category><![CDATA[Free Photoshop template]]></category>
		<category><![CDATA[Photoshop Workshop]]></category>
		<category><![CDATA[Ycademy Photoshop Workshop]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=19669</guid>
		<description><![CDATA[Free Photoshop Button At tonight’s workshop we will build yet another Photoshop Button Template. As we progress, our buttons become more sophisticated as you will see. Today’s button may inspire you to create your own button set and to put it up for sale on your website or shop. Free Button Template for Photoshop Here is the button we are building: There are various interesting elements: - The gradiant gray button background with a border and stroke - The text style - The Logo - The Ribbon Using Photoshop, these elements can be edited separately from the template by modifying the corresponding layers and masks. For those who cannot attend the Workshop tonight, the button is available for free download here below: Incoming search terms:photoshop button templatesnapback template psdbutton templatephotoshop buttonbutton template for photoshopphotoshop button templatesfree button templateFree Photoshop buttonsFree Photoshop button templatesfree button websiteRelated posts: Create Buttons with Photoshop How to use Photoshop Actions Digital Photography Ycademy 7 Photoshop Workshops Free Weekly Horoscope by YORGOO
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/web-design/create-butrtons-with-photoshop/' rel='bookmark' title='Create Buttons with Photoshop'>Create Buttons with Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/web-design/how-to-use-photoshop-actions/' rel='bookmark' title='How to use Photoshop Actions'>How to use Photoshop Actions</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-7/' rel='bookmark' title='Digital Photography Ycademy 7'>Digital Photography Ycademy 7</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-workshops/' rel='bookmark' title='Photoshop Workshops'>Photoshop Workshops</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/free-weekly-horoscope-by-yorgoo/' rel='bookmark' title='Free Weekly Horoscope by YORGOO'>Free Weekly Horoscope by YORGOO</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Free_Photoshop_Button"><h2>Free Photoshop Button</h2></span>
<p>At tonight’s workshop we will build yet another Photoshop Button Template. As we progress, our buttons become more sophisticated as you will see.</p>
<p><a rel="attachment wp-att-19671" href="http://yorgonestoridis.com/web-design/free-photoshop-button-template/attachment/ad8/"><img class="alignnone size-large wp-image-19671" title="Free Button Template Photoshop" src="http://yorgonestoridis.com/wp-content/uploads/2011/01/ad8-460x345.jpg" alt="Free Button Template Photoshop" width="460" height="345" /></a></p>
<p>Today’s button may inspire you to create your own button set and to put it up for sale on your website or shop.</p>
<span id="Free_Button_Template_for_Photoshop"><h2>Free Button Template for Photoshop</h2></span>
<p>Here is the button we are building:</p>
<p><a rel="attachment wp-att-19672" href="http://yorgonestoridis.com/web-design/free-photoshop-button-template/attachment/button9/"><img class="alignleft size-full wp-image-19672" title="Free Button Template Photoshop" src="http://yorgonestoridis.com/wp-content/uploads/2011/01/button9.png" alt="Free Button Template Photoshop" width="449" height="163" /></a>There are various interesting elements:</p>
<p>- The gradiant gray button background with a border and stroke</p>
<p>- The text style</p>
<p>- The Logo</p>
<p>- The Ribbon</p>
<p>Using Photoshop, these elements can be edited separately from the template by modifying the corresponding layers and masks.</p>
<p>For those who cannot attend the Workshop tonight, the button is available for free download here below:</p>
<p><a href="http://yorgonestoridis.com/download/button9.rar"><img class="alignleft size-full wp-image-19673" title="Free Download Photoshop Button template" src="http://yorgonestoridis.com/wp-content/uploads/2011/01/button31.png" alt="Free Download Photoshop Button template" width="434" height="129" /></a></p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/web-design/free-photoshop-button-template/" title="photoshop button template">photoshop button template</a></li><li><a href="http://yorgonestoridis.com/web-design/free-photoshop-button-template/" title="snapback template psd">snapback template psd</a></li><li><a href="http://yorgonestoridis.com/web-design/free-photoshop-button-template/" title="button template">button template</a></li><li><a href="http://yorgonestoridis.com/web-design/free-photoshop-button-template/" title="photoshop button">photoshop button</a></li><li><a href="http://yorgonestoridis.com/web-design/free-photoshop-button-template/" title="button template for photoshop">button template for photoshop</a></li><li><a href="http://yorgonestoridis.com/web-design/free-photoshop-button-template/" title="photoshop button templates">photoshop button templates</a></li><li><a href="http://yorgonestoridis.com/web-design/free-photoshop-button-template/" title="free button template">free button template</a></li><li><a href="http://yorgonestoridis.com/web-design/free-photoshop-button-template/" title="Free Photoshop buttons">Free Photoshop buttons</a></li><li><a href="http://yorgonestoridis.com/web-design/free-photoshop-button-template/" title="Free Photoshop button templates">Free Photoshop button templates</a></li><li><a href="http://yorgonestoridis.com/web-design/free-photoshop-button-template/" title="free button website">free button website</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/web-design/create-butrtons-with-photoshop/' rel='bookmark' title='Create Buttons with Photoshop'>Create Buttons with Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/web-design/how-to-use-photoshop-actions/' rel='bookmark' title='How to use Photoshop Actions'>How to use Photoshop Actions</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-7/' rel='bookmark' title='Digital Photography Ycademy 7'>Digital Photography Ycademy 7</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-workshops/' rel='bookmark' title='Photoshop Workshops'>Photoshop Workshops</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/free-weekly-horoscope-by-yorgoo/' rel='bookmark' title='Free Weekly Horoscope by YORGOO'>Free Weekly Horoscope by YORGOO</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/web-design/free-photoshop-button-template/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Photoshop Workshops</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-workshops/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-workshops/#comments</comments>
		<pubDate>Fri, 14 Jan 2011 10:49:05 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Featured Main]]></category>
		<category><![CDATA[Online Seminar]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[Ycademy]]></category>
		<category><![CDATA[Free Library]]></category>
		<category><![CDATA[Photoshop Manuals]]></category>
		<category><![CDATA[Photoshop Training Materials]]></category>
		<category><![CDATA[Photoshop Tutorials]]></category>
		<category><![CDATA[Photoshop Workshop]]></category>
		<category><![CDATA[Ycademy Seminar]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=19657</guid>
		<description><![CDATA[Bonus for Ycademy Seminar Participants This month our daily calls are focusing on Photoshop basics. To prepare the sessions we are using the most popular resources and guides available out there. For Ycademy Seminar participants we have prepared a Library which we will feed before the Ycademy January Seminar time permitting. Amongst the best resources are the ones from Lynda.com, as well as CS5 for Dummies and the CS5 Bible. We are using these to elaborate tutorials and exercises which we make available for download. Please look out for a mail from Bianca with the access link and pass to the library. Incoming search terms:photoshop free libraryphotoshop materials libraryphotoshop library freePHOTOSHOP material libraryFREE PHOTOSHOP LIBRARYphotoshop material library freephotoshop workshopfree on line wordpress seminaradobe photoshope material labraryfree photoshop materialsRelated posts: Book covers and Jewel Cases with Photoshop Adobe Flash Workshops and Seminar by Ycademy 3D Photoshop Exercise Photoshop Ycademy How to use Photoshop Actions
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/book-covers-and-jewel-cases-with-photoshop/' rel='bookmark' title='Book covers and Jewel Cases with Photoshop'>Book covers and Jewel Cases with Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/adobe-flash-workshops-and-seminar-by-ycademy/' rel='bookmark' title='Adobe Flash Workshops and Seminar by Ycademy'>Adobe Flash Workshops and Seminar by Ycademy</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-3d-design/' rel='bookmark' title='3D Photoshop Exercise'>3D Photoshop Exercise</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/photoshop-ycademy/' rel='bookmark' title='Photoshop Ycademy'>Photoshop Ycademy</a></li>
<li><a href='http://yorgonestoridis.com/web-design/how-to-use-photoshop-actions/' rel='bookmark' title='How to use Photoshop Actions'>How to use Photoshop Actions</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Bonus_for_Ycademy_Seminar_Participants"><h2>Bonus for Ycademy Seminar Participants</h2></span>
<p>This month our daily calls are focusing on Photoshop basics. To prepare the sessions we are using the most popular resources and guides available out there. For Ycademy Seminar participants we have prepared a Library which we will feed before the Ycademy January Seminar time permitting.</p>
<p><a rel="attachment wp-att-19661" href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-workshops/attachment/ad7/"><img class="alignnone size-large wp-image-19661" title="Photoshop Training Library" src="http://yorgonestoridis.com/wp-content/uploads/2011/01/ad7-460x345.jpg" alt="Photoshop Training Library" width="460" height="345" /></a></p>
<p>Amongst the best resources are the ones from Lynda.com, as well as CS5 for Dummies and the CS5 Bible. We are using these to elaborate tutorials and exercises which we make available for download.</p>
<p>Please look out for a mail from Bianca with the access link and pass to the library.</p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-workshops/" title="photoshop free library">photoshop free library</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-workshops/" title="photoshop materials library">photoshop materials library</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-workshops/" title="photoshop library free">photoshop library free</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-workshops/" title="PHOTOSHOP material library">PHOTOSHOP material library</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-workshops/" title="FREE PHOTOSHOP LIBRARY">FREE PHOTOSHOP LIBRARY</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-workshops/" title="photoshop material library free">photoshop material library free</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-workshops/" title="photoshop workshop">photoshop workshop</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-workshops/" title="free on line wordpress seminar">free on line wordpress seminar</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-workshops/" title="adobe photoshope material labrary">adobe photoshope material labrary</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-workshops/" title="free photoshop materials">free photoshop materials</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/book-covers-and-jewel-cases-with-photoshop/' rel='bookmark' title='Book covers and Jewel Cases with Photoshop'>Book covers and Jewel Cases with Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/adobe-flash-workshops-and-seminar-by-ycademy/' rel='bookmark' title='Adobe Flash Workshops and Seminar by Ycademy'>Adobe Flash Workshops and Seminar by Ycademy</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-3d-design/' rel='bookmark' title='3D Photoshop Exercise'>3D Photoshop Exercise</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/photoshop-ycademy/' rel='bookmark' title='Photoshop Ycademy'>Photoshop Ycademy</a></li>
<li><a href='http://yorgonestoridis.com/web-design/how-to-use-photoshop-actions/' rel='bookmark' title='How to use Photoshop Actions'>How to use Photoshop Actions</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/photoshop-workshops/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Create Buttons with Photoshop</title>
		<link>http://yorgonestoridis.com/web-design/create-butrtons-with-photoshop/</link>
		<comments>http://yorgonestoridis.com/web-design/create-butrtons-with-photoshop/#comments</comments>
		<pubDate>Fri, 14 Jan 2011 08:52:22 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[Create Button Photoshop]]></category>
		<category><![CDATA[Download PSD Button]]></category>
		<category><![CDATA[Free Button PSD File]]></category>
		<category><![CDATA[Web Design Photoshop]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=19642</guid>
		<description><![CDATA[Free Button to Download Our last two Photoshop workshops dealt with buttons. Creating buttons allows us to have a closer look at blending options as well to start working with vector masks. Here is a sample of last night’s work: As you can see, the button looks simple, sober and elegant. The secret is in the subtle blending. As we use custom shapes to create buttons we can re-size the buttons easily using the Place function in Photoshop or, as some designers prefer, using Fireworks. Also, the change of colors is a simple task starting from the PSD file of your button: To follow tonight’s session, you may want to download the PSD file of the above button, namely if you have not attended yesterday’s workshop. Please use the button below: Incoming search terms:how to make a clothes button in photoshophow to make a clothing button in photoshopclothing button psdbotton psdphotoshop buttons\photoshop clothing buttonhow to create a clothes button in photoshophow to create clothes button in photoshopclothing button photoshopworkshop web buttonRelated posts: Create a Favicon with Photoshop Create your First Flash Document Resizing Pictures in Photoshop Watermark and Copyright with Photoshop CS4 Book covers and Jewel Cases with Photoshop
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/create-a-favicon-with-photoshop/' rel='bookmark' title='Create a Favicon with Photoshop'>Create a Favicon with Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/create-your-first-flash-document/' rel='bookmark' title='Create your First Flash Document'>Create your First Flash Document</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/resize-a-picture-in-photoshop/' rel='bookmark' title='Resizing Pictures in Photoshop'>Resizing Pictures in Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/watermark-and-copyright-with-photoshop-cs-4/' rel='bookmark' title='Watermark and Copyright with Photoshop CS4'>Watermark and Copyright with Photoshop CS4</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/book-covers-and-jewel-cases-with-photoshop/' rel='bookmark' title='Book covers and Jewel Cases with Photoshop'>Book covers and Jewel Cases with Photoshop</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Free_Button_to_Download"><h2>Free Button to Download</h2></span>
<p>Our last two Photoshop workshops dealt with buttons. Creating buttons allows us to have a closer look at blending options as well to start working with vector masks.</p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2011/01/ad5.jpg"><img class="alignnone size-large wp-image-19643" title="Create Buttons with Photoshop" src="http://yorgonestoridis.com/wp-content/uploads/2011/01/ad5-460x345.jpg" alt="Create Buttons with Photoshop" width="460" height="345" /></a></p>
<p>Here is a sample of last night’s work:</p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2011/01/button3.png"><img class="size-full wp-image-19644 alignnone" title="Sample Button" src="http://yorgonestoridis.com/wp-content/uploads/2011/01/button3.png" alt="Sample Button" width="434" height="129" /></a></p>
<p>As you can see, the button looks simple, sober and elegant. The secret is in the subtle blending. As we use custom shapes to create buttons we can re-size the buttons easily using the Place function in Photoshop or, as some designers prefer, using Fireworks.</p>
<p>Also, the change of colors is a simple task starting from the PSD file of your button:</p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2011/01/button4.jpg"><img class="size-full wp-image-19645 alignnone" title="button4" src="http://yorgonestoridis.com/wp-content/uploads/2011/01/button4.jpg" alt="" width="434" height="129" /></a></p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2011/01/button7.jpg"><img class="alignnone size-full wp-image-19646" title="button7" src="http://yorgonestoridis.com/wp-content/uploads/2011/01/button7.jpg" alt="" width="434" height="129" /></a></p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2011/01/button6.jpg"><img class="alignnone size-full wp-image-19647" title="button6" src="http://yorgonestoridis.com/wp-content/uploads/2011/01/button6.jpg" alt="" width="434" height="129" /></a></p>
<p>To follow tonight’s session, you may want to download the PSD file of the above button, namely if you have not attended yesterday’s workshop. Please use the button below:</p>
<p><a title="Button PSD File" href="http://yorgonestoridis.com/download/button3.rar"><img class="alignnone size-full wp-image-19648" title="button8" src="http://yorgonestoridis.com/wp-content/uploads/2011/01/button8.jpg" alt="" width="434" height="129" /></a></p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/web-design/create-butrtons-with-photoshop/" title="how to make a clothes button in photoshop">how to make a clothes button in photoshop</a></li><li><a href="http://yorgonestoridis.com/web-design/create-butrtons-with-photoshop/" title="how to make a clothing button in photoshop">how to make a clothing button in photoshop</a></li><li><a href="http://yorgonestoridis.com/web-design/create-butrtons-with-photoshop/" title="clothing button psd">clothing button psd</a></li><li><a href="http://yorgonestoridis.com/web-design/create-butrtons-with-photoshop/" title="botton psd">botton psd</a></li><li><a href="http://yorgonestoridis.com/web-design/create-butrtons-with-photoshop/" title="photoshop buttons\">photoshop buttons\</a></li><li><a href="http://yorgonestoridis.com/web-design/create-butrtons-with-photoshop/" title="photoshop clothing button">photoshop clothing button</a></li><li><a href="http://yorgonestoridis.com/web-design/create-butrtons-with-photoshop/" title="how to create a clothes button in photoshop">how to create a clothes button in photoshop</a></li><li><a href="http://yorgonestoridis.com/web-design/create-butrtons-with-photoshop/" title="how to create clothes button in photoshop">how to create clothes button in photoshop</a></li><li><a href="http://yorgonestoridis.com/web-design/create-butrtons-with-photoshop/" title="clothing button photoshop">clothing button photoshop</a></li><li><a href="http://yorgonestoridis.com/web-design/create-butrtons-with-photoshop/" title="workshop web button">workshop web button</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/create-a-favicon-with-photoshop/' rel='bookmark' title='Create a Favicon with Photoshop'>Create a Favicon with Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/create-your-first-flash-document/' rel='bookmark' title='Create your First Flash Document'>Create your First Flash Document</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/resize-a-picture-in-photoshop/' rel='bookmark' title='Resizing Pictures in Photoshop'>Resizing Pictures in Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/watermark-and-copyright-with-photoshop-cs-4/' rel='bookmark' title='Watermark and Copyright with Photoshop CS4'>Watermark and Copyright with Photoshop CS4</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/book-covers-and-jewel-cases-with-photoshop/' rel='bookmark' title='Book covers and Jewel Cases with Photoshop'>Book covers and Jewel Cases with Photoshop</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/web-design/create-butrtons-with-photoshop/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress Development Seminar</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-development-seminar/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-development-seminar/#comments</comments>
		<pubDate>Mon, 10 Jan 2011 09:07:18 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Online Seminar]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Semiomantics XO]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Ycademy]]></category>
		<category><![CDATA[Ycademy Online Seminar]]></category>
		<category><![CDATA[Menu Design]]></category>
		<category><![CDATA[Semiomantics Affiliate Program]]></category>
		<category><![CDATA[Sprite Menu Design]]></category>
		<category><![CDATA[Typography]]></category>
		<category><![CDATA[Web Deign]]></category>
		<category><![CDATA[WordPress Development]]></category>
		<category><![CDATA[Wordpress seminar]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=19575</guid>
		<description><![CDATA[Ycademy January 2011 Online Seminar Back to work! After a busy 2010 and hopefully a good rest over the year end, let’s start 2011 with WordPress based Website Development using Semiomantics XO. After multiple exercises such as the Christmas site or the personal blog, we need to go into some more detail in as much as design, presentation and production are concerned. There are 4 areas of concern we will focus on at the January seminar: 1. Typography While XO offers a good choice of built-in fonts, each customer’s branding is different and we may have to implement existing branding elements, namely defined typefaces. The seminar will deal with the font issue and show how we can overwrite the XO default settings how we can use Google Fonts how we can use any font for for any part of the website how to define font families where to use which kind of font 2. Menu Design A delicate issue, but subsequent to the Apple Exercise, we have received requests to go deeper into the issue of advanced menu design. This concerns all sorts of solutions whereas we will keep the focus on easy navigation. We will start from the almost [...]
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/wordpress-seminar-by-ycademy/' rel='bookmark' title='WordPress Seminar by Ycademy'>WordPress Seminar by Ycademy</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/wordpress-for-authors-seminar/' rel='bookmark' title='WordPress for Authors Seminar'>WordPress for Authors Seminar</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/ycademy-wordpress-and-flash-seminar/' rel='bookmark' title='Ycademy WordPress and Flash Seminar'>Ycademy WordPress and Flash Seminar</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wordpress-seminar-for-authors-2/' rel='bookmark' title='WordPress Seminar for Authors 2'>WordPress Seminar for Authors 2</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-themes-and-development/' rel='bookmark' title='WordPress Themes and Development'>WordPress Themes and Development</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Ycademy_January_2011_Online_Seminar"><h2>Ycademy January 2011 Online Seminar</h2></span>
<p>Back to work! After a busy 2010 and hopefully a good rest over the year end, let’s start 2011 with WordPress based Website Development using Semiomantics XO.</p>
<p>After multiple exercises such as the Christmas site or the personal blog, we need to go into some more detail in as much as design, presentation and production are concerned. There are 4 areas of concern we will focus on at the January seminar:</p>
<span id="Typography"><h3>1. Typography</h3></span>
<p>While XO offers a good choice of built-in fonts, each customer’s branding is different and we may have to implement existing branding elements, namely defined typefaces. The seminar will deal with the font issue and show</p>
<ul>
<li>how we can overwrite the XO default settings</li>
<li>how we can use Google Fonts</li>
<li>how we can use any font for for any part of the website</li>
<li>how to define font families</li>
<li>where to use which kind of font</li>
</ul>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2011/01/ycademy1011.jpg"><img class="aligncenter size-large wp-image-19580" title="Ycademy Seminar January 2011" src="http://yorgonestoridis.com/wp-content/uploads/2011/01/ycademy1011-460x345.jpg" alt="Ycademy Seminar January 2011" width="460" height="345" /></a></p>
<span id="Menu_Design"><h3>2. Menu Design</h3></span>
<p>A delicate issue, but subsequent to the <a title="Apple Look for WordPress" href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/apple-peel-for-wordpress/" target="_blank">Apple Exercise</a>, we have received requests to go deeper into the issue of advanced menu design. This concerns all sorts of solutions whereas we will keep the focus on easy navigation. We will start from the almost endless possibilities of the XO menu, move on to sprites and end up with advanced custom hand-crafted menus.</p>
<span id="Graphic_Design"><h3>3. Graphic Design</h3></span>
<p>Graphic Design for the Internet is different from Print Design. We will focus on understanding these differences and learn about the requirements of cross-platform readability. The Workshop will be focused on communicative graphic design with Photoshop (or any other tool of your choice). Depending on participants skills, we will do this in 2 parts: basics in January and advanced in February.</p>
<span id="Selling_XO"><h3>4. Selling XO</h3></span>
<p>Semiomantics will present it’s new affiliate program, enabling anyone to sell XO and to earn money from doing so. The interest is not just in selling some scripts, but in selling our skills and know-how when it comes to customization, custom design and optimization.</p>
<p>With XO we have a great and flexible product which can serve as a base for any website. Together with WordPress, the world’s most popular publishing platform, there are hardly any limits to design, features and performance. We train you to digg out the best from WP and XO for the benefit of your customers.</p>
<p>This chapter will lead us into the main curriculum of Ycademy 2011: Productivity, Marketing and Project Management.</p>
<span id="Registration"><h3>Registration</h3></span>
<p>The Online Seminar will take place on January 29 — 30, 2011, from 1 pm London Time to 9 pm London Time on both days.</p>
<p>Please register early as we need to prepare the personal materials for each participant.</p>
<p><a href="http://www.hiod.net/order.php?id=1"><img class="aligncenter size-full wp-image-19577" title="Ycademy Registration" src="http://yorgonestoridis.com/wp-content/uploads/2011/01/ycademy102.jpg" alt="Ycademy Registration" width="300" height="100" /></a></p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-development-seminar/" title="wordpress development">wordpress development</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-development-seminar/" title="ycademy seminar">ycademy seminar</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-development-seminar/" title="apple use font what">apple use font what</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-development-seminar/" title="exercises for wordpress developers">exercises for wordpress developers</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-development-seminar/" title="menu design font">menu design font</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-development-seminar/" title="web development seminar 2011">web development seminar 2011</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-development-seminar/" title="wordpress development seminar">wordpress development seminar</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-development-seminar/" title="wordpress menu design development">wordpress menu design development</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/wordpress-seminar-by-ycademy/' rel='bookmark' title='WordPress Seminar by Ycademy'>WordPress Seminar by Ycademy</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/wordpress-for-authors-seminar/' rel='bookmark' title='WordPress for Authors Seminar'>WordPress for Authors Seminar</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/ycademy-wordpress-and-flash-seminar/' rel='bookmark' title='Ycademy WordPress and Flash Seminar'>Ycademy WordPress and Flash Seminar</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wordpress-seminar-for-authors-2/' rel='bookmark' title='WordPress Seminar for Authors 2'>WordPress Seminar for Authors 2</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-themes-and-development/' rel='bookmark' title='WordPress Themes and Development'>WordPress Themes and Development</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-development-seminar/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Christmas Skin for XO 2011 WP Theme</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/christmas-skin-for-xo-2011-wp-theme/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/christmas-skin-for-xo-2011-wp-theme/#comments</comments>
		<pubDate>Mon, 06 Dec 2010 12:07:23 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Semiomantics XO]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[yorgo Design]]></category>
		<category><![CDATA[Semiomantics XO2011 Christmas]]></category>
		<category><![CDATA[Web Design for WordPress]]></category>
		<category><![CDATA[WordPress Christmas Theme]]></category>
		<category><![CDATA[XO 2011]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=19343</guid>
		<description><![CDATA[Time for a High Performance WP Christmas Theme Beginners often are unaware of the impact a theme can have on the performance of a website and therefore they tend to change themes often. Downloading free themes is a great way of changing the look and feel of the site quickly, however there is more to a theme script than looks. Semiomantics XO 2011 is a theme which allows to quickly adapt to seasonal or mood challenges right from the dashboard. Further customization is always possible with some knowledge of CSS and php or by discussing the project with a Semiomantics Developer. How to create a Christmas Website with Semiomantics XO 2011? The easiest way is to follow just the following steps: 1. Choose a color scheme, say in the reds and greens and apply them to your backgrounds, fonts and features from the Semio XO menu in your dashboard. 2. Create a header graphic adapted to Christmas and load it to your Media Library; then enter the new logo link from the Semio XO Menu. 3. Create a Christmas background graphic or find one online and load it from the Background tab under Appearance in our Dashboard. 4. Do some [...]
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/web-design/christmas-cards-personalized/' rel='bookmark' title='Christmas Cards Personalized'>Christmas Cards Personalized</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/christmas-at-ycademy-starts-tonight/' rel='bookmark' title='Christmas at Ycademy starts Tonight'>Christmas at Ycademy starts Tonight</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/transparent-wordpress-theme-design/' rel='bookmark' title='Transparent WordPress Theme Design'>Transparent WordPress Theme Design</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wp-best-destination-theme/' rel='bookmark' title='WP Best Destination Theme'>WP Best Destination Theme</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wp-best-old-fashion-theme/' rel='bookmark' title='WP Best Old Fashion Theme'>WP Best Old Fashion Theme</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Time_for_a_High_Performance_WP_Christmas_Theme"><h2>Time for a High Performance WP Christmas Theme</h2></span>
<p>Beginners often are unaware of the impact a theme can have on the performance of a website and therefore they tend to change themes often. Downloading free themes is a great way of changing the look and feel of the site quickly, however there is more to a theme script than looks.</p>
<p>Semiomantics XO 2011 is a theme which allows to quickly adapt to seasonal or mood challenges right from the dashboard. Further customization is always possible with some knowledge of CSS and php or by discussing the project with a Semiomantics Developer.</p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2010/12/Coca-Cola_Christmas6a.jpg"><img class="alignnone size-large wp-image-19344" title="Coca Cola Christmas" src="http://yorgonestoridis.com/wp-content/uploads/2010/12/Coca-Cola_Christmas6a-460x345.jpg" alt="Coca Cola Christmas" width="460" height="345" /></a></p>
<span id="How_to_create_a_Christmas_Website_with_Semiomantics_XO_2011"><h3>How to create a Christmas Website with Semiomantics XO 2011?</h3></span>
<p>The easiest way is to follow just the following steps:</p>
<p>1. Choose a color scheme, say in the reds and greens and apply them to your backgrounds, fonts and features from the Semio XO menu in your dashboard.</p>
<p>2. Create a header graphic adapted to Christmas and load it to your Media Library; then enter the new logo link from the Semio XO Menu.</p>
<p>3. Create a Christmas background graphic or find one online and load it from the Background tab under Appearance in our Dashboard.</p>
<p>4. Do some custom styling using FireBug and your custom style sheet from the Semio 2011 menu.</p>
<p>That’s it!</p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2010/12/sketch.jpg"><img class="alignnone size-large wp-image-19346" title="sketch" src="http://yorgonestoridis.com/wp-content/uploads/2010/12/sketch-460x345.jpg" alt="Sketch" width="460" height="345" /></a></p>
<span id="Sophisticated_Christmas_Theme_for_WordPress"><h3>Sophisticated Christmas Theme for WordPress</h3></span>
<p>Of course you can do more than the above and think about some specific Christmas features, such as music or a collection of seasonal images presented in an attractive flash component.</p>
<p>In this case you would probably want to change some of the template scripts, such as the header or the page layout, namely of the home page.</p>
<p>How to proceed?</p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2010/12/Coca-Cola_Christmas6s.jpg"><img class="alignnone size-large wp-image-19349" title="yorgo design Christmas" src="http://yorgonestoridis.com/wp-content/uploads/2010/12/Coca-Cola_Christmas6s-460x345.jpg" alt="yorgo design Christmas" width="460" height="345" /></a></p>
<p>1. Do a sketch or drawing of your layout. This can be simple but it will guide you and keep you on track. Draw the big picture: lay out and desired content fields.</p>
<p>2. If you wish to add flash or other components, search for the appropriate components and check out the embed requirements. Personally, I prefer hard-coding to the use of plug-ins.</p>
<p>3. In stead of changing templates, rather create your own templates and add them to the theme. For example, if you wish to build an exceptional home page for the season, just create a Christmas home page template for the occasion. If you would like to change your header for a limited period of time, just create a new header template and add it to the theme, and so on.</p>
<p>4. Design your theme elements in Photoshop for example; if you build a home page with a content layout of say 1024 x 900 pixels, just create a new PSD with this dimensions and start designing each element, starting with the header (or the background as the case may be). For each element, create a folder and stuff all corresponding layers into it. Within a short time you will end up with your brilliant ideas in digital format and you can extract the elements to build them into your theme.</p>
<p>5. Add the components; usually some script inserts are necessary and that’s why we use custom templates which we can disable once the season is over (and we can reactivate it when the season returns:-)).</p>
<p>Stick it all together and you will be a Christmas Star!</p>
<p>Or…</p>
<span id="Join_our_calls_this_week_and_we_will_build_your_site_together"><h3>Join our calls this week and we will build your site together</h3></span>
<p>This week we will create step by step a Christmas or Holiday site on the base of Semiomantics XO 2011. If you don’t have an XO 2011 you may use XO version 2.9 or better as well, the result will look the same.</p>
<p>I am looking forward to a nice Beauty Contest!</p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/christmas-skin-for-xo-2011-wp-theme/" title="coca cola christmas">coca cola christmas</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/christmas-skin-for-xo-2011-wp-theme/" title="christmas coca cola">christmas coca cola</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/christmas-skin-for-xo-2011-wp-theme/" title="Coca-Cola Christmas">Coca-Cola Christmas</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/christmas-skin-for-xo-2011-wp-theme/" title="coca cola xmas">coca cola xmas</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/christmas-skin-for-xo-2011-wp-theme/" title="coca cola christmas 2011">coca cola christmas 2011</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/christmas-skin-for-xo-2011-wp-theme/" title="cola christmas">cola christmas</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/christmas-skin-for-xo-2011-wp-theme/" title="coca cola christmas logo">coca cola christmas logo</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/christmas-skin-for-xo-2011-wp-theme/" title="coca cola kerst">coca cola kerst</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/christmas-skin-for-xo-2011-wp-theme/" title="wp christmas themes">wp christmas themes</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/christmas-skin-for-xo-2011-wp-theme/" title="coke christmas">coke christmas</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/web-design/christmas-cards-personalized/' rel='bookmark' title='Christmas Cards Personalized'>Christmas Cards Personalized</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/christmas-at-ycademy-starts-tonight/' rel='bookmark' title='Christmas at Ycademy starts Tonight'>Christmas at Ycademy starts Tonight</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/transparent-wordpress-theme-design/' rel='bookmark' title='Transparent WordPress Theme Design'>Transparent WordPress Theme Design</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wp-best-destination-theme/' rel='bookmark' title='WP Best Destination Theme'>WP Best Destination Theme</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wp-best-old-fashion-theme/' rel='bookmark' title='WP Best Old Fashion Theme'>WP Best Old Fashion Theme</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/christmas-skin-for-xo-2011-wp-theme/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Edit WordPress Theme CSS</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/edit-wordpress-theme-css/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/edit-wordpress-theme-css/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 17:55:40 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design Basics]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[Web Master Training]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Training]]></category>
		<category><![CDATA[Edit CSS]]></category>
		<category><![CDATA[Firebug]]></category>
		<category><![CDATA[WordPress Style Editing]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=19182</guid>
		<description><![CDATA[Edit Theme CSS with Firebug Tonight’s call will focus on the use of Firebug to quickly test and edit your Theme style. Please download and install it. Firebug integrates with Firefox and is immediately ready for use. Firebug is one of the most efficient tools for professional developers and newbies alike. 2 Good Reasons for using Firebug Have you ever edited your website’s style? And, have you ever had a hard time to find within the CSS style-sheet the exact block of code you needed to edit to implement a desired modification? With Firebug, you will see immediately which line of your code you need to edit and best of all, you can test the modification on the fly before actually hacking your CSS code. Having Errors on your page, in your CSS or HTML code? Firebug is an ideal debugger pointing you directly to the problem area and suggesting the necessary modifications. If you are not yet using Firebug, it’s time to get started tonight :-). Test your Site with YSlow YSlow integrates with Firebug and provides important additional optimization information. Download and install from HERE. We will look into YSlow as well at tonight’s call. Here is an [...]
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/transparent-wordpress-theme-design/' rel='bookmark' title='Transparent WordPress Theme Design'>Transparent WordPress Theme Design</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-customize-semiomantics-thesis/' rel='bookmark' title='How to Customize WordPress 2'>How to Customize WordPress 2</a></li>
<li><a href='http://yorgonestoridis.com/web-design/how-to-customize-wordpress/' rel='bookmark' title='How to Customize WordPress'>How to Customize WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/glossy-wordpress-theme-development/' rel='bookmark' title='Glossy WordPress Theme Development'>Glossy WordPress Theme Development</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wp-best-old-fashion-theme/' rel='bookmark' title='WP Best Old Fashion Theme'>WP Best Old Fashion Theme</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Edit_Theme_CSS_with_Firebug"><h2>Edit Theme CSS with Firebug</h2></span>
<p>Tonight’s call will focus on the use of Firebug to quickly test and edit your Theme style. Please <a title="Firebug" href="http://getfirebug.com/" target="_blank">download</a> and install it. Firebug integrates with Firefox and is immediately ready for use.</p>
<p>Firebug is one of the most efficient tools for professional developers and newbies alike.</p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2010/11/firebug.jpg"><img class="alignnone size-large wp-image-19183" title="firebug" src="http://yorgonestoridis.com/wp-content/uploads/2010/11/firebug-460x253.jpg" alt="Firebug" width="460" height="253" /></a></p>
<span id="Good_Reasons_for_using_Firebug"><h3>2 Good Reasons for using Firebug</h3></span>
<ol>
<li>Have you ever edited your website’s style? And, have you ever had a hard time to find within the CSS style-sheet the exact block of code you needed to edit to implement a desired modification? With Firebug, you will see immediately which line of your code you need to edit and best of all, you can test the modification on the fly before actually hacking your CSS code.</li>
<li>Having Errors on your page, in your CSS or HTML code? Firebug is an ideal debugger pointing you directly to the problem area and suggesting the necessary modifications.</li>
</ol>
<p>If you are not yet using Firebug, it’s time to get started tonight :-).</p>
<span id="Test_your_Site_with_YSlow"><h2>Test your Site with YSlow</h2></span>
<p>YSlow integrates with Firebug and provides important additional optimization information. Download and install from <a title="YSlow" href="https://addons.mozilla.org/en-US/firefox/addon/5369/" target="_blank">HERE</a>. We will look into YSlow as well at tonight’s call.</p>
<p>Here is an example, running YSlow on my main blog which is, I admit, quite overloaded:</p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2010/11/yslow1.jpg"><img class="alignnone size-large wp-image-19188" title="yslow1" src="http://yorgonestoridis.com/wp-content/uploads/2010/11/yslow1-460x325.jpg" alt="Yorgo Nestoridis Screen-shot" width="460" height="325" /></a></p>
<p>The score with the Semiomantics improved Thesis Theme is 85 (the standard Thesis theme scores 73). This is about what all Ycademy Author Blogs should score if properly set up according to instructions and featuring about as many items as my site.</p>
<p><strong>Now look what the optional Semiomantics SEO Engine can do:</strong></p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2010/11/yslow3.jpg"><img class="alignnone size-large wp-image-19189" title="yslow3" src="http://yorgonestoridis.com/wp-content/uploads/2010/11/yslow3-460x328.jpg" alt="Yorgo Nestoridis Screen-shot" width="460" height="328" /></a></p>
<p>Hey, we just get a whooping 94! Smashing under any standards and just a side effect of the engine :-).</p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/edit-wordpress-theme-css/" title="download theme css">download theme css</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/edit-wordpress-theme-css/" title="yorgo nestoridis CSS">yorgo nestoridis CSS</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/edit-wordpress-theme-css/" title="2011 change wordpress theme css">2011 change wordpress theme css</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/edit-wordpress-theme-css/" title="firebug mobile theme download">firebug mobile theme download</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/edit-wordpress-theme-css/" title="how to edit wordpress using firebug">how to edit wordpress using firebug</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/edit-wordpress-theme-css/" title="wordpress edit theme css">wordpress edit theme css</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/edit-wordpress-theme-css/" title="wordpress edit theme css how">wordpress edit theme css how</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/edit-wordpress-theme-css/" title="wordpress how to edit theme css">wordpress how to edit theme css</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/transparent-wordpress-theme-design/' rel='bookmark' title='Transparent WordPress Theme Design'>Transparent WordPress Theme Design</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-customize-semiomantics-thesis/' rel='bookmark' title='How to Customize WordPress 2'>How to Customize WordPress 2</a></li>
<li><a href='http://yorgonestoridis.com/web-design/how-to-customize-wordpress/' rel='bookmark' title='How to Customize WordPress'>How to Customize WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/glossy-wordpress-theme-development/' rel='bookmark' title='Glossy WordPress Theme Development'>Glossy WordPress Theme Development</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/wp-best-old-fashion-theme/' rel='bookmark' title='WP Best Old Fashion Theme'>WP Best Old Fashion Theme</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/edit-wordpress-theme-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>3D Web Design Components</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-media/3d-web-design-components/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-media/3d-web-design-components/#comments</comments>
		<pubDate>Mon, 31 May 2010 14:39:52 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Animated 3D]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[yorgo Design]]></category>
		<category><![CDATA[3D design]]></category>
		<category><![CDATA[Media Design]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=15809</guid>
		<description><![CDATA[3D Design The advantages and disadvantages of 3D Design for websites will be the topic of tonight’s YORGOO Call at yorgotalk. Incoming search terms:disadvantages of 3d designyorgo webdesign3d website design 20113dwebdesign feedburner imagesdisadvantages to 3d websiteswebdesign yorgonestoridis comRelated posts: Flash Components by Semiomantics Custom Book Cover Design Web Design Training Web Design Workshop 18 Image Filters Web Design
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/flash-components-by-semiomantics/' rel='bookmark' title='Flash Components by Semiomantics'>Flash Components by Semiomantics</a></li>
<li><a href='http://yorgonestoridis.com/people/bianca-gubalke-people/custom-book-cover-design/' rel='bookmark' title='Custom Book Cover Design'>Custom Book Cover Design</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/web-design-training/' rel='bookmark' title='Web Design Training'>Web Design Training</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/web-design-workshop-18-image-filters/' rel='bookmark' title='Web Design Workshop 18 Image Filters'>Web Design Workshop 18 Image Filters</a></li>
<li><a href='http://yorgonestoridis.com/web-design/web-design-2/' rel='bookmark' title='Web Design'>Web Design</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="D_Design"><h2>3D Design</h2></span>
<p>The advantages and disadvantages of 3D Design for websites will be the topic of tonight’s YORGOO Call at <a title="Yorgo Talk" href="http://yorgotalk.com" target="_blank">yorgotalk</a>.<br />
 <iframe width="460" height="345" border="0" topmargin="0" leftmargin="0" marginwidth="0" marginheight="0" SCROLLING="no" src="http://www.3dvia.com/iframe_view_media.php?media_id=DF757FD5E7F9CBDD&#038;viewer=0&#038;width=460&#038;height=345"></iframe></p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/3d-web-design-components/" title="disadvantages of 3d design">disadvantages of 3d design</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/3d-web-design-components/" title="yorgo webdesign">yorgo webdesign</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/3d-web-design-components/" title="3d website design 2011">3d website design 2011</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/3d-web-design-components/" title="3dwebdesign feedburner images">3dwebdesign feedburner images</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/3d-web-design-components/" title="disadvantages to 3d websites">disadvantages to 3d websites</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/3d-web-design-components/" title="webdesign yorgonestoridis com">webdesign yorgonestoridis com</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/flash-components-by-semiomantics/' rel='bookmark' title='Flash Components by Semiomantics'>Flash Components by Semiomantics</a></li>
<li><a href='http://yorgonestoridis.com/people/bianca-gubalke-people/custom-book-cover-design/' rel='bookmark' title='Custom Book Cover Design'>Custom Book Cover Design</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/web-design-training/' rel='bookmark' title='Web Design Training'>Web Design Training</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/web-design-workshop-18-image-filters/' rel='bookmark' title='Web Design Workshop 18 Image Filters'>Web Design Workshop 18 Image Filters</a></li>
<li><a href='http://yorgonestoridis.com/web-design/web-design-2/' rel='bookmark' title='Web Design'>Web Design</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-media/3d-web-design-components/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Flash Components by Semiomantics</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis/flash-components-by-semiomantics/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis/flash-components-by-semiomantics/#comments</comments>
		<pubDate>Wed, 19 May 2010 08:58:30 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Build your Flash Site]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Elegant Web Design]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash Design]]></category>
		<category><![CDATA[Flash Workshop]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Media Design]]></category>
		<category><![CDATA[Online Seminar]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design Basics]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[Ycademy]]></category>
		<category><![CDATA[yorgo Design]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>
		<category><![CDATA[Flash Components]]></category>
		<category><![CDATA[Flash Seminar]]></category>
		<category><![CDATA[Semiomantics Accordion]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=15750</guid>
		<description><![CDATA[Semiomantics Flash Components for Ycademy May Seminar The upcoming Ycademy Seminar is focusing on Flash, Flash Components and user experience enhanced by Flash. The Seminar is designed for Website Designers and Developers, who want to take their skills to the next level. Find out more from HERE. Flash Components by Semiomantics Flash is releasing a plethora of flash components this month. While they are originally designed to be used namely with Semiomantics XO and News Cast scripts, they can be used on any website. Check it out in the Semiomantics Shop later this month. Ycademy Seminar Participants will be introduced to the use of one of the most exciting components. It’s the unique Semiomantics Accordion which in fact is more than just an accordion; it’s also a sideshow, a menu, a slider … most anything you want to make out of it. [accordion-fx][/accordion-fx] Now this is something: you can even test the sideshow by clicking on the button at the bottom right. [accordion-fx settings=“settings2.xml”][/accordion-fx] The Semiomantics Accordion is probably the best out there since its development is based on the second best :-). As you see, you can load it vertically or horizontally,  you can modify the number of images, [...]
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/ycademy-flash-seminar-may-2010/' rel='bookmark' title='Ycademy Flash Seminar May 29–30, 2010'>Ycademy Flash Seminar May 29–30, 2010</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/create-your-first-flash-document/' rel='bookmark' title='Create your First Flash Document'>Create your First Flash Document</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/build-your-flash-intro/' rel='bookmark' title='Build your Flash Intro'>Build your Flash Intro</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/flash-workshops-is-the-time-right-for-you/' rel='bookmark' title='Flash Workshops: Is the Time Right for you?'>Flash Workshops: Is the Time Right for you?</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/adobe-flash-workshops-and-seminar-by-ycademy/' rel='bookmark' title='Adobe Flash Workshops and Seminar by Ycademy'>Adobe Flash Workshops and Seminar by Ycademy</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Semiomantics_Flash_Components_for_Ycademy_May_Seminar"><h2>Semiomantics Flash Components for Ycademy May Seminar</h2></span>
<p>The upcoming Ycademy Seminar is focusing on Flash, Flash Components and user experience enhanced by Flash. The Seminar is designed for Website Designers and Developers, who want to take their skills to the next level. Find out more from <a title="Ycademy Online Flash Seminar" href="http://yorgonestoridis.com/yorgo-nestoridis/ycademy-flash-seminar-may-2010/" target="_blank">HERE</a>.</p>
<span id="Flash_Components_by_Semiomantics"><h3>Flash Components by Semiomantics</h3></span>
<p>Flash is releasing a plethora of flash components this month. While they are originally designed to be used namely with Semiomantics XO and News Cast scripts, they can be used on any website. Check it out in the Semiomantics Shop later this month.</p>
<p>Ycademy Seminar Participants will be introduced to the use of one of the most exciting components. It’s the unique Semiomantics Accordion which in fact is more than just an accordion; it’s also a sideshow, a menu, a slider … most anything you want to make out of it.</p>
<p>[accordion-fx][/accordion-fx]</p>
<p><strong>Now this is something: you can even test the sideshow by clicking on the button at the bottom right.</strong></p>
<p>[accordion-fx settings=“settings2.xml”][/accordion-fx]</p>
<p><strong>The Semiomantics Accordion is probably the best out there since its development is based on the second best :-).</strong></p>
<p>As you see, you can load it vertically or horizontally,  you can modify the number of images, even the effects and much, much more. You see an autoplay version and you can play with the mouse on the images … just try and find out what this script jewel can do for you.</p>
<p>Join tonight’s Call at <a title="YorgoTalk" href="http://yorgotalk.com" target="_blank">YorgoTalk</a> to find out more about the Ycademy May Seminar.</p>
<p>PS: The Semiomantics Accordion is included in the Seminar ticket price:-).</p>
<p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/ycademy-flash-seminar-may-2010/' rel='bookmark' title='Ycademy Flash Seminar May 29–30, 2010'>Ycademy Flash Seminar May 29–30, 2010</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/create-your-first-flash-document/' rel='bookmark' title='Create your First Flash Document'>Create your First Flash Document</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/build-your-flash-intro/' rel='bookmark' title='Build your Flash Intro'>Build your Flash Intro</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/flash-workshops-is-the-time-right-for-you/' rel='bookmark' title='Flash Workshops: Is the Time Right for you?'>Flash Workshops: Is the Time Right for you?</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/adobe-flash-workshops-and-seminar-by-ycademy/' rel='bookmark' title='Adobe Flash Workshops and Seminar by Ycademy'>Adobe Flash Workshops and Seminar by Ycademy</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis/flash-components-by-semiomantics/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Create your First Flash Document</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/create-your-first-flash-document/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/create-your-first-flash-document/#comments</comments>
		<pubDate>Tue, 11 May 2010 12:38:27 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Build your Flash Site]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Flash Design]]></category>
		<category><![CDATA[Flash Workshop]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[Ycademy]]></category>
		<category><![CDATA[First Flash Document]]></category>
		<category><![CDATA[Flash CS5]]></category>
		<category><![CDATA[Flash Ycademy]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=15689</guid>
		<description><![CDATA[Create your First Flash Document Tonight At tonight’s Ycademy Flash Workshop we will finish the intro to Flash and create a first animated Flash Document. We will continue working with the Live Conference tonight; please login from HERE. [kml_flashembed publishmethod=“static” fversion=“10.0.0″ useexpressinstall=“true” movie=“http://yorgonestoridis.com/wp-content/uploads/2010/05/sample2.swf” width=“480” height=“360” fid=“Flash Sample” targetclass=“flashmovie” play=“false” loop=“false” menu=“true” quality=“best” scale=“noborder” devicefont=“false” seamlesstabbing=“true” swliveconnect=“true” allowfullscreen=“true” allowscriptaccess=“always” allownetworking=“all”] [/kml_flashembed] We will create step by step a similar flash as above tonight. Download the above sample files from HERE. Incoming search terms:flash documentallowNetworking = “all” в Flash Developkml_flashembed fid problemhow to make flash documenthot to create a flash documentflsh dokumentflash document websiteflash docementfirst flash documentcreate flash documentRelated posts: Flash Workshops: Is the Time Right for you? Build your Flash Intro Build your Flash Website Adobe Flash Workshops and Seminar by Ycademy Build your Flash Website Step 2
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/flash-workshops-is-the-time-right-for-you/' rel='bookmark' title='Flash Workshops: Is the Time Right for you?'>Flash Workshops: Is the Time Right for you?</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/build-your-flash-intro/' rel='bookmark' title='Build your Flash Intro'>Build your Flash Intro</a></li>
<li><a href='http://yorgonestoridis.com/web-design/build-your-flash-website-2/' rel='bookmark' title='Build your Flash Website'>Build your Flash Website</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/adobe-flash-workshops-and-seminar-by-ycademy/' rel='bookmark' title='Adobe Flash Workshops and Seminar by Ycademy'>Adobe Flash Workshops and Seminar by Ycademy</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/build-your-flash-website-step-2/' rel='bookmark' title='Build your Flash Website Step 2'>Build your Flash Website Step 2</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Create_your_First_Flash_Document_Tonight"><h2>Create your First Flash Document Tonight</h2></span>
<p>At tonight’s Ycademy Flash Workshop we will finish the intro to Flash and create a first animated Flash Document.</p>
<p>We will continue working with the Live Conference tonight; please login from <a title="YorgoTalk" href="http://live.yorgotalk.com" target="_blank">HERE</a>.</p>
<p>[kml_flashembed publishmethod=“static” fversion=“10.0.0″ useexpressinstall=“true” movie=“http://yorgonestoridis.com/wp-content/uploads/2010/05/sample2.swf” width=“480” height=“360” fid=“Flash Sample” targetclass=“flashmovie” play=“false” loop=“false” menu=“true” quality=“best” scale=“noborder” devicefont=“false” seamlesstabbing=“true” swliveconnect=“true” allowfullscreen=“true” allowscriptaccess=“always” allownetworking=“all”]<a href="http://adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
<p>[/kml_flashembed]</p>
<p>We will create step by step a similar flash as above tonight.</p>
<p>Download the above sample files from <a title="Flash Sample 2" href="http://yorgonestoridis.com/download/flashsample2.rar">HERE</a>.</p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/create-your-first-flash-document/" title="flash document">flash document</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/create-your-first-flash-document/" title="allowNetworking = “all” в Flash Develop">allowNetworking = “all” в Flash Develop</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/create-your-first-flash-document/" title="kml_flashembed fid problem">kml_flashembed fid problem</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/create-your-first-flash-document/" title="how to make flash document">how to make flash document</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/create-your-first-flash-document/" title="hot to create a flash document">hot to create a flash document</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/create-your-first-flash-document/" title="flsh dokument">flsh dokument</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/create-your-first-flash-document/" title="flash document website">flash document website</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/create-your-first-flash-document/" title="flash docement">flash docement</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/create-your-first-flash-document/" title="first flash document">first flash document</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/create-your-first-flash-document/" title="create flash document">create flash document</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/flash-workshops-is-the-time-right-for-you/' rel='bookmark' title='Flash Workshops: Is the Time Right for you?'>Flash Workshops: Is the Time Right for you?</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/build-your-flash-intro/' rel='bookmark' title='Build your Flash Intro'>Build your Flash Intro</a></li>
<li><a href='http://yorgonestoridis.com/web-design/build-your-flash-website-2/' rel='bookmark' title='Build your Flash Website'>Build your Flash Website</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/adobe-flash-workshops-and-seminar-by-ycademy/' rel='bookmark' title='Adobe Flash Workshops and Seminar by Ycademy'>Adobe Flash Workshops and Seminar by Ycademy</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/build-your-flash-website-step-2/' rel='bookmark' title='Build your Flash Website Step 2'>Build your Flash Website Step 2</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/create-your-first-flash-document/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Watermark and Copyright with Photoshop CS4</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/watermark-and-copyright-with-photoshop-cs-4/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/watermark-and-copyright-with-photoshop-cs-4/#comments</comments>
		<pubDate>Thu, 29 Apr 2010 12:46:09 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Digital Photography]]></category>
		<category><![CDATA[Media Design]]></category>
		<category><![CDATA[Photo Editing]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[Ycademy]]></category>
		<category><![CDATA[yorgo Design]]></category>
		<category><![CDATA[Copyright]]></category>
		<category><![CDATA[Photoshop CS4]]></category>
		<category><![CDATA[Watermark]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=15611</guid>
		<description><![CDATA[Watermark and Copyright with Photoshop CS4 A small but important task for all creative minds: protect your work! Even considering that in certain countries, such as the USA, your images are automatically copyright protected when you publish them, you may want to make it “crystal” clear to everyone that you claim your rights on your work. In Photoshop CS 4 it is easy to create a simple Action for the purpose of watermarking and to add a copyright notice to your picture. The watermark is the visible sign, while the copyright notice is attached to the file. At tonight’s call we will create an Action in CS4 allowing you to add quickly your watermark and copyright notice to your images. Join the workshop at 8 pm London time at yorGOtalk. Incoming search terms:watermark photoshopcopyright photoshop cs4designing a copyright for photographycopyright in photoshop cs4watermark action photoshop cs4copyright in photoshopcopyright sign in photoshop cs4transparent watermark photophotoshop watermark transparentphotoshop transparent watermarkRelated posts: Book covers and Jewel Cases with Photoshop How to use Photoshop Actions Photoshop Ycademy Transparent Watermarks and Fonts Digital Photography Ycademy 7
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/book-covers-and-jewel-cases-with-photoshop/' rel='bookmark' title='Book covers and Jewel Cases with Photoshop'>Book covers and Jewel Cases with Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/web-design/how-to-use-photoshop-actions/' rel='bookmark' title='How to use Photoshop Actions'>How to use Photoshop Actions</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/photoshop-ycademy/' rel='bookmark' title='Photoshop Ycademy'>Photoshop Ycademy</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/transparent-watermarks-and-fonts/' rel='bookmark' title='Transparent Watermarks and Fonts'>Transparent Watermarks and Fonts</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-7/' rel='bookmark' title='Digital Photography Ycademy 7'>Digital Photography Ycademy 7</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Watermark_and_Copyright_with_Photoshop_CS4"><h2>Watermark and Copyright with Photoshop CS4</h2></span>
<p>A small but important task for all creative minds: protect your work! Even considering that in certain countries, such as the USA, your images are automatically copyright protected when you publish them, you may want to make it “crystal” clear to everyone that you claim your rights on your work.</p>
<p>In Photoshop CS 4 it is easy to create a simple Action for the purpose of watermarking and to add a copyright notice to your picture. The watermark is the visible sign, while the copyright notice is attached to the file.</p>
<div id="attachment_15615" class="wp-caption alignnone" style="width: 490px"><a href="http://yorgonestoridis.com/wp-content/uploads/2010/04/600watermark22.jpg"><img class="size-medium wp-image-15615" title="600watermark2" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/600watermark22-480x431.jpg" alt="" width="480" height="431" /></a><p class="wp-caption-text">Transparent Watermark 1</p></div>
<div id="attachment_15614" class="wp-caption alignnone" style="width: 490px"><a href="http://yorgonestoridis.com/wp-content/uploads/2010/04/600watermark.jpg"><img class="size-medium wp-image-15614" title="600watermark" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/600watermark-480x360.jpg" alt="Transparent Watermark 2" width="480" height="360" /></a><p class="wp-caption-text">Transparent Watermark 2</p></div>
<p>At tonight’s call we will create an Action in CS4 allowing you to add quickly your watermark and copyright notice to your images.</p>
<p>Join the workshop at 8 pm London time at <a title="YorgoTalk" href="http://yorgotalk.com" target="_blank">yorGOtalk</a>.</p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/watermark-and-copyright-with-photoshop-cs-4/" title="watermark photoshop">watermark photoshop</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/watermark-and-copyright-with-photoshop-cs-4/" title="copyright photoshop cs4">copyright photoshop cs4</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/watermark-and-copyright-with-photoshop-cs-4/" title="designing a copyright for photography">designing a copyright for photography</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/watermark-and-copyright-with-photoshop-cs-4/" title="copyright in photoshop cs4">copyright in photoshop cs4</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/watermark-and-copyright-with-photoshop-cs-4/" title="watermark action photoshop cs4">watermark action photoshop cs4</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/watermark-and-copyright-with-photoshop-cs-4/" title="copyright in photoshop">copyright in photoshop</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/watermark-and-copyright-with-photoshop-cs-4/" title="copyright sign in photoshop cs4">copyright sign in photoshop cs4</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/watermark-and-copyright-with-photoshop-cs-4/" title="transparent watermark photo">transparent watermark photo</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/watermark-and-copyright-with-photoshop-cs-4/" title="photoshop watermark transparent">photoshop watermark transparent</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/watermark-and-copyright-with-photoshop-cs-4/" title="photoshop transparent watermark">photoshop transparent watermark</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/book-covers-and-jewel-cases-with-photoshop/' rel='bookmark' title='Book covers and Jewel Cases with Photoshop'>Book covers and Jewel Cases with Photoshop</a></li>
<li><a href='http://yorgonestoridis.com/web-design/how-to-use-photoshop-actions/' rel='bookmark' title='How to use Photoshop Actions'>How to use Photoshop Actions</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/photoshop-ycademy/' rel='bookmark' title='Photoshop Ycademy'>Photoshop Ycademy</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/transparent-watermarks-and-fonts/' rel='bookmark' title='Transparent Watermarks and Fonts'>Transparent Watermarks and Fonts</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-7/' rel='bookmark' title='Digital Photography Ycademy 7'>Digital Photography Ycademy 7</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/watermark-and-copyright-with-photoshop-cs-4/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Digital Photography Ycademy 10</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/#comments</comments>
		<pubDate>Fri, 16 Apr 2010 14:20:21 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Digital Photography]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Media Design]]></category>
		<category><![CDATA[Media Marketing Publishing]]></category>
		<category><![CDATA[Photo Editing]]></category>
		<category><![CDATA[Photo Website]]></category>
		<category><![CDATA[Photographic Art]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design Basics]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[Ycademy]]></category>
		<category><![CDATA[yorgo Design]]></category>
		<category><![CDATA[Digital Photography Ycademy]]></category>
		<category><![CDATA[Digital Portrait Photography]]></category>
		<category><![CDATA[Lightroom]]></category>
		<category><![CDATA[Portrait Editing]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>
		<category><![CDATA[YorgoMan]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=15498</guid>
		<description><![CDATA[Portrait Shooting Based on Digital Photography Ycademy 9 we are able to plan our pictures depth of field. The only remaining problem is: you may have a camera which does not allow for A settings (manual Aperture priority settings). Don’t worry, there is a way to at least partially compensate for this shortfall. The below gallery can best be viewed HERE (opens new window). Depth of Field in Portraiting with a low end Camera or Mobile Phone Remember, we said that the depth of field is function of aperture and distance. Hence, we can use the distance trick which works with most any digital camera or mobile phone. First we try to compose our picture in a way that the person is not glued to a background, such as leaning on a wall. Position the person at least 2 meters off the next background. Then frame clsosely from maximum 1.5 meters (without zooming). The result may be better if the background is even further away to fall out of the metered focal range (corresponding to infinity settings) which is at about 10–12 meters. Now shoot your portrait: the autofocus will grab the face and apply the distance, which in it’s turn [...]
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-9/' rel='bookmark' title='Digital Photography Ycademy 9'>Digital Photography Ycademy 9</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-8/' rel='bookmark' title='Digital Photography Ycademy 8'>Digital Photography Ycademy 8</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-7/' rel='bookmark' title='Digital Photography Ycademy 7'>Digital Photography Ycademy 7</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photo-ycademy-4/' rel='bookmark' title='Digital Photography Ycademy 4'>Digital Photography Ycademy 4</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/lightroom-presets-for-landscapes/' rel='bookmark' title='Digital Photography Ycademy 6'>Digital Photography Ycademy 6</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Portrait_Shooting"><h2>Portrait Shooting</h2></span>
<p>Based on <a title="Digital Photography Ycademy" href="http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-9/" target="_blank">Digital Photography Ycademy 9</a> we are able to plan our pictures depth of field. The only remaining problem is: you may have a camera which does not allow for A settings (manual Aperture priority settings).</p>
<p>Don’t worry, there is a way to at least partially compensate for this shortfall.</p>
<p>The below gallery can best be viewed <a title="Portraits of YorgoMan at Ycademy Gallery" href="http://yorgonestoridis.com/photo-ycademy-1/#/portrait/" target="_blank">HERE</a> (opens new window).</p>

<a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/attachment/indiana_jones/' title='indiana_jones'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/indiana_jones-200x150.jpg" class="attachment-thumbnail" alt="indiana_jones" title="indiana_jones" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/attachment/vignette-brown/' title='vignette-brown'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/vignette-brown-200x150.jpg" class="attachment-thumbnail" alt="vignette-brown" title="vignette-brown" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/attachment/yorgoman1-2/' title='yorgoman1'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/yorgoman11-200x150.jpg" class="attachment-thumbnail" alt="yorgoman1" title="yorgoman1" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/attachment/yorgoman2/' title='yorgoman2'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/yorgoman2-200x150.jpg" class="attachment-thumbnail" alt="yorgoman2" title="yorgoman2" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/attachment/yorgoman3/' title='yorgoman3'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/yorgoman3-200x150.jpg" class="attachment-thumbnail" alt="yorgoman3" title="yorgoman3" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/attachment/yorgoman4/' title='yorgoman4'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/yorgoman4-200x150.jpg" class="attachment-thumbnail" alt="yorgoman4" title="yorgoman4" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/attachment/yorgoman5/' title='yorgoman5'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/yorgoman5-200x150.jpg" class="attachment-thumbnail" alt="yorgoman5" title="yorgoman5" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/attachment/yorgoman6/' title='yorgoman6'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/yorgoman6-200x150.jpg" class="attachment-thumbnail" alt="yorgoman6" title="yorgoman6" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/attachment/yorgoman7/' title='yorgoman7'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/yorgoman7-200x150.jpg" class="attachment-thumbnail" alt="yorgoman7" title="yorgoman7" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/attachment/yorgoman8/' title='yorgoman8'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/yorgoman8-200x150.jpg" class="attachment-thumbnail" alt="yorgoman8" title="yorgoman8" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/attachment/yorgoman9/' title='yorgoman9'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/yorgoman9-200x150.jpg" class="attachment-thumbnail" alt="yorgoman9" title="yorgoman9" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/attachment/yorgoman10/' title='yorgoman10'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/yorgoman10-200x150.jpg" class="attachment-thumbnail" alt="yorgoman10" title="yorgoman10" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/attachment/yorgoman11/' title='yorgoman11'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/yorgoman111-200x150.jpg" class="attachment-thumbnail" alt="yorgoman11" title="yorgoman11" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/attachment/yorgoman12/' title='yorgoman12'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/yorgoman12-200x150.jpg" class="attachment-thumbnail" alt="yorgoman12" title="yorgoman12" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/attachment/yorgoman13/' title='yorgoman13'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/yorgoman13-200x150.jpg" class="attachment-thumbnail" alt="yorgoman13" title="yorgoman13" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/attachment/yorgoman14/' title='yorgoman14'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/yorgoman14-200x150.jpg" class="attachment-thumbnail" alt="yorgoman14" title="yorgoman14" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/attachment/yorgoman15/' title='yorgoman15'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/yorgoman15-200x150.jpg" class="attachment-thumbnail" alt="yorgoman15" title="yorgoman15" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/attachment/yorgoman16/' title='yorgoman16'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/yorgoman16-200x150.jpg" class="attachment-thumbnail" alt="yorgoman16" title="yorgoman16" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/attachment/yorgoman17/' title='yorgoman17'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/yorgoman17-200x150.jpg" class="attachment-thumbnail" alt="yorgoman17" title="yorgoman17" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/attachment/yorgoman18/' title='yorgoman18'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/yorgoman18-200x150.jpg" class="attachment-thumbnail" alt="yorgoman18" title="yorgoman18" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/attachment/yorgoman19/' title='yorgoman19'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/yorgoman19-200x150.jpg" class="attachment-thumbnail" alt="yorgoman19" title="yorgoman19" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/attachment/yorgoman20/' title='yorgoman20'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/yorgoman20-200x150.jpg" class="attachment-thumbnail" alt="yorgoman20" title="yorgoman20" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/attachment/yorgoman21/' title='yorgoman21'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/yorgoman21-200x150.jpg" class="attachment-thumbnail" alt="yorgoman21" title="yorgoman21" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/attachment/yorgoman22/' title='yorgoman22'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/yorgoman22-200x150.jpg" class="attachment-thumbnail" alt="yorgoman22" title="yorgoman22" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/attachment/yorgoman23/' title='yorgoman23'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/yorgoman23-200x150.jpg" class="attachment-thumbnail" alt="yorgoman23" title="yorgoman23" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/attachment/yorgoman24/' title='yorgoman24'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/yorgoman24-200x150.jpg" class="attachment-thumbnail" alt="yorgoman24" title="yorgoman24" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/attachment/yorgoman25/' title='yorgoman25'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/yorgoman25-200x150.jpg" class="attachment-thumbnail" alt="yorgoman25" title="yorgoman25" /></a>

<span id="Depth_of_Field_in_Portraiting_with_a_low_end_Camera_or_Mobile_Phone"><h3>Depth of Field in Portraiting with a low end Camera or Mobile Phone</h3></span>
<p>Remember, we said that the depth of field is function of aperture and distance. Hence, we can use the distance trick which works with most any digital camera or mobile phone.</p>
<p>First we try to compose our picture in a way that the person is not glued to a background, such as leaning on a wall. Position the person at least 2 meters off the next background. Then frame clsosely from maximum 1.5 meters (without zooming). The result may be better if the background is even further away to fall out of the metered focal range (corresponding to infinity settings) which is at about 10–12 meters.</p>
<p>Now shoot your portrait: the autofocus will grab the face and apply the distance, which in it’s turn will trigger the aperture and shutter speed in function of that distance and light. By setting your camera presets on Portrait, the camera does this as well, whereas a narroc depth of field is forced.</p>
<p>In any case, you will end up with a sharp portrait and a more or less blurred background.</p>
<span id="Portrait_Post_Editing"><h3>Portrait Post Editing</h3></span>
<p>If you have taken your picture according to the above, then your post editing is a sunday walk. Just apply some of the great lightroom presets or photoshop actions. Some of these professional tools will lift the quality of your mediocre picture dramatically and clearly digg a huge canion between you and the competitors in your camera’s class.</p>
<p>Here an example: the below picture has been taken with my 4 years old $50 supermarket camera according to the above rule. Then I just pulled it through some professional filters such as stuff from from Kubota, Davis and onOne. This is a matter of just seconds :-).</p>
<p>Join tonight’s YcademyWorkshop for more tips and tricks.</p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/" title="portrait post editing">portrait post editing</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-9/' rel='bookmark' title='Digital Photography Ycademy 9'>Digital Photography Ycademy 9</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-8/' rel='bookmark' title='Digital Photography Ycademy 8'>Digital Photography Ycademy 8</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-7/' rel='bookmark' title='Digital Photography Ycademy 7'>Digital Photography Ycademy 7</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photo-ycademy-4/' rel='bookmark' title='Digital Photography Ycademy 4'>Digital Photography Ycademy 4</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/lightroom-presets-for-landscapes/' rel='bookmark' title='Digital Photography Ycademy 6'>Digital Photography Ycademy 6</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-10/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Digital Photography Ycademy 8</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-8/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-8/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 06:58:38 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Digital Photography]]></category>
		<category><![CDATA[Graphic Design]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Media Design]]></category>
		<category><![CDATA[Photo Editing]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Vouliagmeni]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[Ycademy]]></category>
		<category><![CDATA[Lightroom]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=15480</guid>
		<description><![CDATA[Photo Editing vs. Graphic Design Sometimes it is difficult to draw a clear line between photo editing and graphic design or editing. The present Ycademy Sessions deal with Photo Editing and the primary goal is to improve our photographic skills. Whether we use Lightroom or Photoshop, we can push our editing away from photography into the fields of graphic creativity, which is not the purpose of what we are doing at this stage. Don’t just take pictures — Tell a Story The beautifu world of Photography starts with your shot and leads to the story your picture will tell after editing. Make sure it is still a photograph for the purpose of the April Ycademy! Sure we can use most any pictures to tell a story by using the graphic design editors from Photoshop. But it’s a lot more difficult to come back with an optimized photograph, where subtle editing will not destroy the photo caracter of the image and yet allow us to tell a story. You may argue, that you don’t need an optimized Photo to tell a story. True. Your output however is no longer a photography but a graphich illustration as the case may be. Whether at [...]
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-7/' rel='bookmark' title='Digital Photography Ycademy 7'>Digital Photography Ycademy 7</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-2/' rel='bookmark' title='Digital Photography Ycademy 2'>Digital Photography Ycademy 2</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/lightroom-presets-for-landscapes/' rel='bookmark' title='Digital Photography Ycademy 6'>Digital Photography Ycademy 6</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-1/' rel='bookmark' title='Digital Photography Ycademy 1'>Digital Photography Ycademy 1</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photo-ycademy-4/' rel='bookmark' title='Digital Photography Ycademy 4'>Digital Photography Ycademy 4</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Photo_Editing_vs._Graphic_Design"><h2>Photo Editing vs. Graphic Design</h2></span>
<p>Sometimes it is difficult to draw a clear line between photo editing and graphic design or editing. The present Ycademy Sessions deal with Photo Editing and the primary goal is to improve our photographic skills.</p>
<p>Whether we use Lightroom or Photoshop, we can push our editing away from photography into the fields of graphic creativity, which is not the purpose of what we are doing at this stage.</p>
<span id="Dont_just_take_pictures_-_Tell_a_Story"><h3>Don’t just take pictures — Tell a Story</h3></span>
<p>The beautifu world of Photography starts with your shot and leads to the story your picture will tell after editing. Make sure it is still a photograph for the purpose of the April Ycademy!</p>
<div id="attachment_15481" class="wp-caption alignnone" style="width: 460px"><a href="http://yorgonestoridis.com/wp-content/uploads/2010/04/vouliagmeni1.jpg"><img class="size-full wp-image-15481" title="vouliagmeni1" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/vouliagmeni1.jpg" alt="Vouliagmeni" width="450" height="600" /></a><p class="wp-caption-text">Vouliagmeni</p></div>
<p>Sure we can use most any pictures to tell a story by using the graphic design editors from Photoshop. But it’s a lot more difficult to come back with an optimized photograph, where subtle editing will not destroy the photo caracter of the image and yet allow us to tell a story.</p>
<p>You may argue, that you don’t need an optimized Photo to tell a story. True. Your output however is no longer a photography but a graphich illustration as the case may be. Whether at the base you have been using a photo or a hand designed image is not really relevant. What is relevant, is to know, which language we use to communicate and to express ourselves and how the viewer will percieve our image.</p>
<p>I like to clearly distinguish between photographic work and digital graphic work.</p>
<span id="Using_Filters_and_Presets_in_Lightroom"><h3>Using Filters and Presets in Lightroom</h3></span>
<p>Tonight’s workshop will deal more in depth with Presets and Filters in Lightroom. Different snapshots taken during the editing proces will help to select the final version of the picture.</p>
<p>In order to study Lightroom in depth, you may want to grab a great piece of literature from here below.</p>
<div id="attachment_15482" class="wp-caption alignnone" style="width: 460px"><a href="http://yorgonestoridis.com/wp-content/uploads/2010/04/vouliagmeni4.jpg"><img class="size-full wp-image-15482" title="vouliagmeni4" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/vouliagmeni4.jpg" alt="Vouliagmeni 2" width="450" height="600" /></a><p class="wp-caption-text">Vouliagmeni 2</p></div>
<p>[download_box]<a title="lrflow" href="http://yorgonestoridis.com/download/lrflow.zip">Download</a> eBook 20 MB[/download_box]</p>
<p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-7/' rel='bookmark' title='Digital Photography Ycademy 7'>Digital Photography Ycademy 7</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-2/' rel='bookmark' title='Digital Photography Ycademy 2'>Digital Photography Ycademy 2</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/lightroom-presets-for-landscapes/' rel='bookmark' title='Digital Photography Ycademy 6'>Digital Photography Ycademy 6</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-1/' rel='bookmark' title='Digital Photography Ycademy 1'>Digital Photography Ycademy 1</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photo-ycademy-4/' rel='bookmark' title='Digital Photography Ycademy 4'>Digital Photography Ycademy 4</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-8/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Digital Photography Ycademy 7</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-7/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-7/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 14:23:52 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Digital Photography]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Media Design]]></category>
		<category><![CDATA[Photo Editing]]></category>
		<category><![CDATA[Photo Website]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design Basics]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[Ycademy]]></category>
		<category><![CDATA[yorgo Design]]></category>
		<category><![CDATA[YORGOO Media]]></category>
		<category><![CDATA[Lightroom Presets]]></category>
		<category><![CDATA[Photoshop Actions]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=15475</guid>
		<description><![CDATA[Working with Lightroom Presets Presets are of great help to adjust images in Lightroom. For easy editing it is necessary to get familiar with terminology and some technical features. Most Lightroom presets find their equivalent in Photoshop. Tonight at the Workshop we will play with some Lightroom Presets and Photoshop actions. Get your materials from here-below: [download_box]Presets and Actions Download[/download_box] Incoming search terms:praz sur arlyRelated posts: Digital Photography Ycademy 5 Digital Photography Ycademy 6 Digital Photography Ycademy 3 Digital Photography Ycademy 2 Digital Photography Ycademy 4
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-5/' rel='bookmark' title='Digital Photography Ycademy 5'>Digital Photography Ycademy 5</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/lightroom-presets-for-landscapes/' rel='bookmark' title='Digital Photography Ycademy 6'>Digital Photography Ycademy 6</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-3/' rel='bookmark' title='Digital Photography Ycademy 3'>Digital Photography Ycademy 3</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-2/' rel='bookmark' title='Digital Photography Ycademy 2'>Digital Photography Ycademy 2</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photo-ycademy-4/' rel='bookmark' title='Digital Photography Ycademy 4'>Digital Photography Ycademy 4</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Working_with_Lightroom_Presets"><h2>Working with Lightroom Presets</h2></span>
<p>Presets are of great help to adjust images in Lightroom. For easy editing it is necessary to get familiar with terminology and some technical features. Most Lightroom presets find their equivalent in Photoshop.</p>
<p>Tonight at the Workshop we will play with some Lightroom Presets and Photoshop actions.</p>
<div id="attachment_15476" class="wp-caption alignnone" style="width: 490px"><a href="http://yorgonestoridis.com/wp-content/uploads/2010/04/praz-sur-arly.jpg"><img class="size-medium wp-image-15476" title="praz-sur-arly" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/praz-sur-arly-480x360.jpg" alt="Praz-sur-Arly" width="480" height="360" /></a><p class="wp-caption-text">Praz-sur-Arly</p></div>
<p>Get your materials from here-below:</p>
<p>[download_box]<a title="Presets and Actions" href="http://yorgonestoridis.com/download/pslr.zip">Presets and Actions Download</a>[/download_box]</p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-7/" title="praz sur arly">praz sur arly</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-5/' rel='bookmark' title='Digital Photography Ycademy 5'>Digital Photography Ycademy 5</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/lightroom-presets-for-landscapes/' rel='bookmark' title='Digital Photography Ycademy 6'>Digital Photography Ycademy 6</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-3/' rel='bookmark' title='Digital Photography Ycademy 3'>Digital Photography Ycademy 3</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-2/' rel='bookmark' title='Digital Photography Ycademy 2'>Digital Photography Ycademy 2</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photo-ycademy-4/' rel='bookmark' title='Digital Photography Ycademy 4'>Digital Photography Ycademy 4</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photography-ycademy-7/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>New Adobe CS5 Master Collection</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-media/new-adobe-cs5-master-collection/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-media/new-adobe-cs5-master-collection/#comments</comments>
		<pubDate>Wed, 14 Apr 2010 04:20:21 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Digital Photography]]></category>
		<category><![CDATA[Educational Media]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Media Design]]></category>
		<category><![CDATA[Media Marketing Publishing]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Online Seminar]]></category>
		<category><![CDATA[Photo Editing]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Publishing]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Social Network Publishing]]></category>
		<category><![CDATA[Video]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design Basics]]></category>
		<category><![CDATA[Web Design Workshop]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Ycademy]]></category>
		<category><![CDATA[yorgo nestoridis social media]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[Adobe CS5 Master Collection]]></category>
		<category><![CDATA[Adobe CS5 Pricing]]></category>
		<category><![CDATA[After Effects]]></category>
		<category><![CDATA[Chi Hosters]]></category>
		<category><![CDATA[CS5]]></category>
		<category><![CDATA[Flash]]></category>
		<category><![CDATA[Home Business]]></category>
		<category><![CDATA[Hosting South Africa]]></category>
		<category><![CDATA[Photoshop CS3]]></category>
		<category><![CDATA[YorgoNestoridis]]></category>
		<category><![CDATA[YORGOO]]></category>
		<category><![CDATA[YORGOO Media]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=15458</guid>
		<description><![CDATA[New Adobe CS5 Master Collection It’s smashing, exciting and a milestone, the new Adobe CS5 release! no reason to try to describe all the new goodies wrapped up in the new pack, just go and have a look at the launch presentation at Adobe. Product delivery to the public is expected to start in May. The single most important reason to buy CS5 If you watch through the various presentation clips, you fill see that for every product being part of the CS5 Master Collection Adobe presents 5 main characteristics. I was wondering, what would be my synthesized single best reason to switch from CS4 to CS5. With CS5, Adobe introduces eye-bleeding cool features, and loads of them. However one main argument is that the somewhat oldish programs like Photoshop, Flash and After Effects become much more productivity oriented and user-friendly. Adobe CS5 will definitely make professional tools available to a wider audience and grant a smoother and much more effective workflow. This is where individuals, Home Business Builders, free lancers, designers and developers will find a true possibility to run a media design, development and publishing business as a one-man show. Or, there will be less need for outsourcing, [...]
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/ycademy-online-web-master-training-for-yorgoo-press/' rel='bookmark' title='Ycademy Web Master Training for YORGOO Press'>Ycademy Web Master Training for YORGOO Press</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photo-ycademy-4/' rel='bookmark' title='Digital Photography Ycademy 4'>Digital Photography Ycademy 4</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/yorgo-nestoridis-published-by-amazon/' rel='bookmark' title='Yorgo Nestoridis published by Amazon'>Yorgo Nestoridis published by Amazon</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/photoshop-ycademy/' rel='bookmark' title='Photoshop Ycademy'>Photoshop Ycademy</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/google-top-10-online-seminar-july-2009/' rel='bookmark' title='Google Top 10 Online Seminar July 2009'>Google Top 10 Online Seminar July 2009</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="New_Adobe_CS5_Master_Collection"><h2>New Adobe CS5 Master Collection</h2></span>
<p>It’s smashing, exciting and a milestone, the new Adobe CS5 release! no reason to try to describe all the new goodies wrapped up in the new pack, just go and have a look at the launch presentation at <a title="Adobe CS5 Launch" href="http://cs5launch.adobe.com/?PID=3154956" target="_blank">Adobe</a>. Product delivery to the public is expected to start in May.</p>
<span id="The_single_most_important_reason_to_buy_CS5"><h3>The single most important reason to buy CS5</h3></span>
<p>If you watch through the various presentation clips, you fill see that for every product being part of the CS5 Master Collection Adobe presents 5 main characteristics. I was wondering, what would be my synthesized single best reason to switch from CS4 to CS5.</p>
<p>With CS5, Adobe introduces eye-bleeding cool features, and loads of them. However one main argument is that the somewhat oldish programs like Photoshop, Flash and After Effects become much more productivity oriented and user-friendly.</p>
<p>Adobe CS5 will definitely make professional tools available to a wider audience and grant a smoother and much more effective workflow. This is where individuals, Home Business Builders, free lancers, designers and developers will find a true possibility to run a media design, development and publishing business as a one-man show. Or, there will be less need for outsourcing, coding, sharing to get a better result faster.</p>
<div id="attachment_15460" class="wp-caption alignnone" style="width: 490px"><a href="http://yorgonestoridis.com/photo-ycademy-1/#/home/"><img class="size-medium wp-image-15460" title="yn" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/yn-480x269.jpg" alt="Yorgo Nestoridis Media Publishing" width="480" height="269" /></a><p class="wp-caption-text">Yorgo Nestoridis Media Publishing</p></div>
<span id="Adobe_CS5_from_the_point_of_view_of_Ycademy"><h3>Adobe CS5 from the point of view of Ycademy</h3></span>
<p>Ycademy, our online Educational Arm has been organizing trainings, workshops and seminars focusing amongst others on Web design and Web site development with Photoshop for some time and we are aware of the difficulties Photoshop represents for the average part-timer or newbie. However with some smart add-on actions, filters and plugins, Photoshop became accessible to average computer users. The new CS5 however makes things much easier in as much as complex manipulations can be executed in just seconds, such as moving, replacing or deleting objects from a photo for example whereas as the case may be, Photoshop will automatically replace the object with the appropriate hypothetical background. Smashing!</p>
<p>Whether you use Lightroom or not, the new Photoshop CS5 is a highly efficient image editing tool, not just for graphic designers, but also for Photographers. The interaction of the various tools provided in the CS5 Master Collection or in any CS5 Pack for that matter, provides a fantastic training environment where I am sure we will have new opportunities to help many people to become familiar with professional tools, cutting edge technology and the joy of exceptional results.</p>
<p>CS5 is in the trend: visual expression has become part of our day-to-day language due to the proliferation of mobile devices and social networks. Amongst all the internet users there will always be a good number who  are reaching out for quality, style and the best possible image or branding. Adobe CS5 is a bundle of tools allowing anyone using it to communicate better and in more creative ways. I am looking forward to explore CS5 with our first training group in June.</p>
<div id="attachment_15461" class="wp-caption alignnone" style="width: 310px"><a href="http://yorgonestoridis.com/wp-content/uploads/2010/04/global300.jpg"><img class="size-full wp-image-15461" title="global300" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/global300.jpg" alt="Web Design and Web Site Development" width="300" height="300" /></a><p class="wp-caption-text">Web Design and Web Site Development</p></div>
<span id="Adobe_CS5_from_the_point_of_view_of_Semiomantics"><h3>Adobe CS5 from the point of view of Semiomantics</h3></span>
<p>It has never been and it still is not Adobe’s cup of tea: semantics! The proliferation of more visual communication provides increasing challenges for Semiomantics and in fact our way to optimize editing and publishing of visual content and media (images, movies, sound) has still a long way to go and a brilliant future ahead. In short: the more visual content customers publish, the more they will have the need to use Semiomantics tuned scripts to reach Google Top 10or to show up on Bing’s top end. More important even: Semiomantics Approach to Facebook with the new Semiomantics Flash module, which will be released in May, will open completely new perspectives for agents and customers.</p>
<span id="Adobe_CS5_from_the_point_of_view_of_YORGOO"><h3>Adobe CS5 from the point of view of YORGOO</h3></span>
<p>YORGOO, focusing on free traffic and free leads will wake up soon, simply because we come close to the end of a long development of new content for YORGOO, focusing namely on social networks and Search Engines in the broadest way. YORGOO will remain a starting point for online Marketing efforts and help people to connect quickly with environments where the people are, where the target customers are looking for products and where people interact. The YORGOO approach will remain a no-profit no-ads program and oriented towards all those who want to start an commercial online activity with limited means and high perspectives.</p>
<p>More soon.</p>
<div id="attachment_15462" class="wp-caption alignnone" style="width: 310px"><a href="http://yorgonestoridis.com/wp-content/uploads/2010/04/astir300.jpg"><img class="size-full wp-image-15462" title="astir300" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/astir300.jpg" alt="Media Design" width="300" height="300" /></a><p class="wp-caption-text">Media Design</p></div>
<span id="Adobe_CS5_from_the_point_of_view_of_ChiHosters_and_Hosting_South_Africa"><h3>Adobe CS5 from the point of view of ChiHosters and Hosting South Africa</h3></span>
<p>More media and more sophisticated media, more creativity and more creation, faster internet lines and computers entail larger file sized and more media oriented hosting needs. At <a title="Chi Hosters" href="http://chihosters.com" target="_blank">ChiHosters</a> and <a title="Hosting South Africa" href="http://hostingsouthafrica.net" target="_blank">Hosting South Africa </a>we have planned ahead; entrusting large freely accessible networks with your copyrighted media is not the safest way to protect your interest. Hosting your originals on your own server or host in a reliable way is a necessity for professionals as well as for many security conscious individuals. We are providing the most cost effective solutions in the industry, namely for small enterprises and individuals. Expanding the activity to high end hosting services are under discussion.</p>
<span id="Adobe_CS5_from_the_point_of_view_of_YORGOO_Media"><h3>Adobe CS5 from the point of view of YORGOO Media</h3></span>
<p>A year ago we have stalled the YORGOO Media development for different reasons, namely because we were not satisfied with the WordPress MU development as well as with the hosting capabilities we had. With the release of WordPress 3 and the possibility to provide advanced media streaming, YORGOO Media is high on our list of priorities since it will provide highly efficient Semiomantics signed publishing solutions to the over 70 000 YORGOO subscribers.</p>
<p>More shortly.</p>
<div id="attachment_15459" class="wp-caption alignnone" style="width: 310px"><a href="http://www.google.com/#hl=en&amp;q=adobe+CS5&amp;aq=f&amp;aqi=g1g-z1g1g-z2g5&amp;aql=&amp;oq=&amp;gs_rfai=&amp;fp=86878a0b2eba38b2"><img class="size-full wp-image-15459" title="semio300x300" src="http://yorgonestoridis.com/wp-content/uploads/2010/04/semio300x300.jpg" alt="Yorgo Nestoridis Publishing and Editing" width="300" height="300" /></a><p class="wp-caption-text">Yorgo Nestoridis Publishing and Editing</p></div>
<span id="Adobe_CS5_Ripoff_Pricing_Policy"><h3>Adobe CS5 Ripoff Pricing Policy</h3></span>
<p>As other companies, such as Microsoft, Adobe has a discriminatory pricing policy, privileging the American Markets. Why the heck should Adobe Products cost more in Australia and Europe than in the USA? Funny, that such a high tech company, with a global approach has such a narrow, short sighted pricing policy. It’s comparable to the pharmaceutic industry and there we know what the natural reaction of the markets are. If anyone from Adobe reads this: tell your boss, time has come to change your rip-off attitude, the global market is looking for global pricing.</p>
<p>More about Adobe CS5 pricing shortly.</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 92px; width: 1px; height: 1px; overflow: hidden;"><img src="file:///C:/Users/User/AppData/Local/Temp/moz-screenshot.png" alt="" /></div>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/new-adobe-cs5-master-collection/" title="adobe cs5 master collection wholesale">adobe cs5 master collection wholesale</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/new-adobe-cs5-master-collection/" title="adobe master collection upgrade pricing ripoff">adobe master collection upgrade pricing ripoff</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/new-adobe-cs5-master-collection/" title="adobe rip-offs">adobe rip-offs</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/new-adobe-cs5-master-collection/" title="adobe ripoff policy">adobe ripoff policy</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/new-adobe-cs5-master-collection/" title="most imortant parts of cs5 master collection">most imortant parts of cs5 master collection</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/ycademy-online-web-master-training-for-yorgoo-press/' rel='bookmark' title='Ycademy Web Master Training for YORGOO Press'>Ycademy Web Master Training for YORGOO Press</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-photo-ycademy-4/' rel='bookmark' title='Digital Photography Ycademy 4'>Digital Photography Ycademy 4</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/yorgo-nestoridis-published-by-amazon/' rel='bookmark' title='Yorgo Nestoridis published by Amazon'>Yorgo Nestoridis published by Amazon</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/photoshop-ycademy/' rel='bookmark' title='Photoshop Ycademy'>Photoshop Ycademy</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/google-top-10-online-seminar-july-2009/' rel='bookmark' title='Google Top 10 Online Seminar July 2009'>Google Top 10 Online Seminar July 2009</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-media/new-adobe-cs5-master-collection/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

