<?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</title>
	<atom:link href="http://yorgonestoridis.com/category/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>How to build a Custom WordPress Site 2</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/how-to-build-a-custom-wordpress-site-2/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/how-to-build-a-custom-wordpress-site-2/#comments</comments>
		<pubDate>Mon, 14 May 2012 10:25:22 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Development]]></category>
		<category><![CDATA[WordPress Training]]></category>
		<category><![CDATA[WordPress Tutorials]]></category>
		<category><![CDATA[Custom WP Theme]]></category>
		<category><![CDATA[How to build a custom WordPress site]]></category>
		<category><![CDATA[Semiomantics XO]]></category>
		<category><![CDATA[WordPress Custom Developments]]></category>
		<category><![CDATA[WordPress Custom Theme]]></category>
		<category><![CDATA[WP Child Theme]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22998</guid>
		<description><![CDATA[Build a Custom WP with Semiomantics XO This post focuses on setting up our Main Theme and a Child Theme. For the purpose of this exercise we will use Semiomantics XO as the parent theme because it’s flexible, user-friendly and highly optimized. In fact you can use most any decent WP theme to follow this tutorial, namely the TwentyEleven which comes with the WP installation. Adding a Theme Like on any live site, our test site on BitNami allows us to add themes either from the Dashboard (upload the theme’s zip file) or by pasting the theme into the themes folder in wp-contents. Access your BitNami environment using Windows Explorer and surf to the themes folder. You will see the same folders and files structure under htdocs as you are used to when accessing your WordPress folder on a server using an FTP client. In order to add Themes, we just drop theme folders into the ‘themes’ folder as per above. As you can see, I have amongst others) added my Semiomantics XO (the ‘xo’ folder under themes). XO will serve as the parent theme of the new website. Instead however of customizing XO directly, I will create a child [...]
Related posts:<ol>
<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/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-development/wordpress-yorgo-nestoridis-development/how-to-make-wordpress-themes-responsive/' rel='bookmark' title='How to make WordPress Themes Responsive'>How to make WordPress Themes Responsive</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>
<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>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Build_a_Custom_WP_with_Semiomantics_XO"><h2>Build a Custom WP with Semiomantics XO</h2></span>
<p>This post focuses on setting up our Main Theme and a Child Theme. For the purpose of this exercise we will use Semiomantics XO as the parent theme because it’s flexible, user-friendly and highly optimized. In fact you can use most any decent WP theme to follow this tutorial, namely the TwentyEleven which comes with the WP installation.</p>
<div id="attachment_22999" class="wp-caption alignnone" style="width: 470px"><a href="http://yorgonestoridis.com/wp-content/uploads/2012/05/custom-wp-magazine-theme-yorgoopublishing.jpg"><img class="size-large wp-image-22999" title="Semiomantics XO for WordPress - Custom Magazine" src="http://yorgonestoridis.com/wp-content/uploads/2012/05/custom-wp-magazine-theme-yorgoopublishing-460x596.jpg" alt="Semiomantics XO for WordPress - Custom Magazine" width="460" height="596" /></a><p class="wp-caption-text">Semiomantics XO for WordPress — Custom Magazine</p></div>
<span id="Adding_a_Theme"><h3>Adding a Theme</h3></span>
<p>Like on any live site, our test site on BitNami allows us to add themes either from the Dashboard (upload the theme’s zip file) or by pasting the theme into the themes folder in wp-contents.</p>
<p>Access your BitNami environment using Windows Explorer and surf to the themes folder. You will see the same folders and files structure under htdocs as you are used to when accessing your WordPress folder on a server using an FTP client.</p>
<div id="attachment_23000" class="wp-caption alignnone" style="width: 470px"><a href="http://yorgonestoridis.com/wp-content/uploads/2012/05/bitnami.jpg"><img class="size-large wp-image-23000" title="Folders on BitNamy WP Stack" src="http://yorgonestoridis.com/wp-content/uploads/2012/05/bitnami-460x526.jpg" alt="Folders on BitNamy WP Stack" width="460" height="526" /></a><p class="wp-caption-text">Folders on BitNamy WP Stack</p></div>
<p>In order to add Themes, we just drop theme folders into the ‘themes’ folder as per above. As you can see, I have amongst others) added my Semiomantics XO (the ‘xo’ folder under themes). XO will serve as the parent theme of the new website. Instead however of customizing XO directly, I will create a child theme which will contain all modifications. The advantage is clear: when an update or upgrade of the theme becomes available, the parent theme can be updated without destroying the child and restarting the customization job from scratch.</p>
<span id="Create_a_WP_Child_Theme_for_Semiomantics_XO"><h3>Create a WP Child Theme for Semiomantics XO</h3></span>
<p>A WordPress child theme consists first of all of a Folder to which we add a style-sheet.</p>
<p>This style-sheet contains a commented header which defines the parent theme folder as well as other optional data and it usually imports the parent theme’s style-sheet with a simple line of code (no need to copy paste the whole style-sheet). Also we will add a screenshot which will serve as a thumbnail in the Themes tab of our WP Dashboard.</p>
<div id="attachment_23001" class="wp-caption alignnone" style="width: 470px"><a href="http://yorgonestoridis.com/wp-content/uploads/2012/05/yorgo-12-1.jpg"><img class="size-large wp-image-23001" title="Style-sheet for Child Theme" src="http://yorgonestoridis.com/wp-content/uploads/2012/05/yorgo-12-1-460x381.jpg" alt="Style-sheet for Child Theme" width="460" height="381" /></a><p class="wp-caption-text">Style-sheet for Child Theme</p></div>
<p>As you can see above, I am editing my files using the free <a title="PSPAD" href="http://pspad.com" target="_blank">PSPad</a> which is handy to edit the various files we need to develop.</p>
<span id="How_to_Create_a_Child_Theme_step_by_Step"><h3>How to Create a Child Theme step by Step</h3></span>
<p>1. Add a new folder to the WP Themes folder under wp-contents/themes; name it as you like your theme to be named, in my case: yorgo12</p>
<p>2. Create a new file called style.css using your editor and save it into the new theme folder.</p>
<p>3. Edit the style.css file by adding a commented section defining:</p>
<ul>
<li>Theme Name  (yorgo12 in the above case)</li>
<li>Theme URI    (this is optional and can be your website where you may talk about your theme; in my case: semiomantics.com)</li>
<li>Description    (Optional; I have added a simple description, but you may well describe your Child theme, for example: 3 column minimalist child theme for Semiomantics XO.</li>
<li>Author:           (Optional; put your name.)</li>
<li>Template:  This is important: put the FOLDER NAME of the parent theme, in my case xo.</li>
<li>Version:          (Optional: I start with version 1.0)</li>
</ul>
<p>You could add other data as some authors do, such as Author’s URI and more, but that’s not necessary.</p>
<p><strong>NOTE</strong>: All the above information sits between comment tags (/*.….….*/)</p>
<p>Next, we import the style-sheet of the parent theme with the following line of code:</p>
<pre class="brush: php; title: ; notranslate">

@import url(&quot;../xo/style.css&quot;);
</pre>
<p>I have then added a comment to remind that you should not edit above unless you know what you do.</p>
<p>Your style.css file reads now similar to the following:</p>
<pre class="brush: php; title: ; notranslate">

/*
Theme Name:       yorgo12
Theme URI:        http://semiomantics.com
Description:      Child Theme for Semiomantics XO 12
Author:           Yorgo Nestoridis
Template:         xo
Version:          1.0
*/
@import url(&quot;../xo/style.css&quot;);
/* Edit here below*/
</pre>
<p>Save the file into the new Child Theme folder.</p>
<p>4. Add a Thumbnail</p>
<p>Usually the image represents a screenshot of the new site but it can also be a brand logo or any other image. Important: the image should be called ‘screenshot’ and be in png format to fit into WP. Use image size 300px x 225px for best display.</p>
<div id="attachment_23003" class="wp-caption alignnone" style="width: 310px"><a href="http://yorgonestoridis.com/wp-content/uploads/2012/05/screenshot1.png"><img class="size-full wp-image-23003" title="screenshot.png" src="http://yorgonestoridis.com/wp-content/uploads/2012/05/screenshot1.png" alt="screenshot.png" width="300" height="225" /></a><p class="wp-caption-text">screenshot.png</p></div>
<p>Drop the image into the Child Theme folder.</p>
<p>Let’s now activate our new Child Theme from the WP Dashboard under Appearance/Themes.</p>
<p>What you will see is an out of the box XO when looking at the front-end of the site.</p>
<p>Having set the base for our custom development, we will start now to adapt the site to the needs of the hypothetical customer. Continue reading the next post.</p>
<p>Related posts:<ol>
<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/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-development/wordpress-yorgo-nestoridis-development/how-to-make-wordpress-themes-responsive/' rel='bookmark' title='How to make WordPress Themes Responsive'>How to make WordPress Themes Responsive</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>
<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>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/how-to-build-a-custom-wordpress-site-2/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Customizing CSS in WP Mobile Theme</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/customizing-css-in-wp-mobile-theme/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/customizing-css-in-wp-mobile-theme/#comments</comments>
		<pubDate>Tue, 01 May 2012 16:36:47 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design for Mobile Devices]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Customizing WP Mobile Theme]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22834</guid>
		<description><![CDATA[Common Changes This post lists some CSS snippets to customize WPTouch Pro. Remove the Page Title Area Note: When removing the page title area we recommend using a child theme’s stylesheet and applying the code below to its corresponding stylesheet, per the instructions on applying custom CSS. In the iPhone theme: In the iPad theme: Remove reflection on calendar icons and post-thumbnails Change the size of the Post Thumbnails     Change every instance of 46px to your desired size Remove rounded corners on Post Thumbnails Remove “Comments are closed” text when comments are disabled in WordPress p.nocomments, #respond { display:none !important; } Remove comments completely Remove comment # bubble Remove ‘breadcumb’ text in category and search pages Use custom color for the mobile header where #ffffff can be customized to suit. Remove “HelloBar” Related posts: XO Mobile Theme with WPTouch Pro Customizing WP Shop Theme Customizing Post Editing Best WP Business Theme Hosting South Africa Fun Theme
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-mobile-theme-with-wptouch-pro/' rel='bookmark' title='XO Mobile Theme with WPTouch Pro'>XO Mobile Theme with WPTouch Pro</a></li>
<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/customizing-post-editing/' rel='bookmark' title='Customizing Post Editing'>Customizing Post Editing</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/best-wp-business-theme-branding/' rel='bookmark' title='Best WP Business Theme'>Best WP Business Theme</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/hosting-south-africa-fun-theme/' rel='bookmark' title='Hosting South Africa Fun Theme'>Hosting South Africa Fun Theme</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Common_Changes"><h2>Common Changes</h2></span>
<div class='toc wptoc'>
<h2>Contents</h2>
<ol class='toc-odd level-1'>
	<li>
		<a href="#Common_Changes">Common Changes</a>
		<ol class='toc-even level-2'>
			<li>
				<a href="#Remove_the_Page_Title_Area">Remove the Page Title Area</a>
			</li>
			<li>
				<a href="#Remove_reflection_on_calendar_icons_and_post-thumbnails">Remove reflection on calendar icons and post-thumbnails</a>
			</li>
			<li>
				<a href="#Change_the_size_of_the_Post_Thumbnails">Change the size of the Post Thumbnails</a>
			</li>
			<li>
				<a href="#Remove_rounded_corners_on_Post_Thumbnails">Remove rounded corners on Post Thumbnails</a>
			</li>
			<li>
				<a href="#Remove_Comments_are_closed_text_when_comments_are_disabled_in_WordPress">Remove “Comments are closed” text when comments are disabled in WordPress</a>
			</li>
			<li>
				<a href="#Remove_comments_completely">Remove comments completely</a>
			</li>
			<li>
				<a href="#Remove_comment__bubble">Remove comment # bubble</a>
			</li>
			<li>
				<a href="#Remove_breadcumb_text_in_category_and_search_pages">Remove ‘breadcumb’ text in category and search pages</a>
			</li>
			<li>
				<a href="#Use_custom_color_for_the_mobile_header">Use custom color for the mobile header</a>
			</li>
			<li>
				<a href="#Remove_HelloBar">Remove “HelloBar”</a>
			</li>
</ol>
</ol>
</ol>
</div>
<div class='wptoc-end'> </div>
<p>This post lists some CSS snippets to customize WPTouch Pro.</p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2012/05/IMG_3696.png"><img class="alignnone size-large wp-image-22835" title="Semiomantics XO Mobile for WordPress" src="http://yorgonestoridis.com/wp-content/uploads/2012/05/IMG_3696-460x690.png" alt="Semiomantics XO Mobile for WordPress" width="460" height="690" /></a></p>
<span id="Remove_the_Page_Title_Area"><h3>Remove the Page Title Area</h3></span>
<p>Note: When removing the page title area we recommend using a child theme’s stylesheet and applying the code below to its corresponding stylesheet, per the instructions on applying custom CSS.</p>
<p>In the iPhone theme:</p>
<pre class="brush: php; title: ; notranslate">.page-title-area { display:none !important; }</pre>
<p>In the iPad theme:</p>
<pre class="brush: php; title: ; notranslate">.page .title-area {display: none;}</pre>
<span id="Remove_reflection_on_calendar_icons_and_post-thumbnails"><h3>Remove reflection on calendar icons and post-thumbnails</h3></span>
<pre class="brush: php; title: ; notranslate">.idevice .post .thumbnail-wrap { -webkit-box-reflect: none; }
.idevice .calendar-box { -webkit-box-reflect: none; }</pre>
</pre>
<span id="Change_the_size_of_the_Post_Thumbnails"><h3>Change the size of the Post Thumbnails</h3></span>
<p> </p>
<p> </p>
<p>Change every instance of 46px to your desired size</p>
<pre class="brush: php; title: ; notranslate">.post .thumbnail-wrap { height: 46px; width: 46px; } .post img.attachment-post-thumbnail { width: 46px; height: 46px; }</pre>
<span id="Remove_rounded_corners_on_Post_Thumbnails"><h3>Remove rounded corners on Post Thumbnails</h3></span>
<pre class="brush: php; title: ; notranslate">.post img.attachment-post-thumbnail { -webkit-mask-box-image: none; }</pre>
<span id="Remove_Comments_are_closed_text_when_comments_are_disabled_in_WordPress"><h3>Remove “Comments are closed” text when comments are disabled in WordPress</h3></span>
<p>p.nocomments, #respond { display:none !important; }</p>
<span id="Remove_comments_completely"><h3>Remove comments completely</h3></span>
<pre class="brush: php; title: ; notranslate">#respond, ol.commentlist, a.com-toggle { display: none !important; }</pre>
<span id="Remove_comment__bubble"><h3>Remove comment # bubble</h3></span>
<pre class="brush: php; title: ; notranslate">.comment-bubble { display:none !important; }</pre>
<span id="Remove_breadcumb_text_in_category_and_search_pages"><h3>Remove ‘breadcumb’ text in category and search pages</h3></span>
<pre class="brush: php; title: ; notranslate">.archive-text { display: none !important; }</pre>
<span id="Use_custom_color_for_the_mobile_header"><h3>Use custom color for the mobile header</h3></span>
<pre class="brush: php; title: ; notranslate">#header { background-color: #ffffff !important; }</pre>
<p>where #ffffff can be customized to suit.</p>
<span id="Remove_HelloBar"><h3>Remove “HelloBar”</h3></span>
<pre class="brush: php; title: ; notranslate">#hellobar-container, #hellobar-wrapper, #hellobar-pusher {display: none;} </pre>
<p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-mobile-theme-with-wptouch-pro/' rel='bookmark' title='XO Mobile Theme with WPTouch Pro'>XO Mobile Theme with WPTouch Pro</a></li>
<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/customizing-post-editing/' rel='bookmark' title='Customizing Post Editing'>Customizing Post Editing</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/best-wp-business-theme-branding/' rel='bookmark' title='Best WP Business Theme'>Best WP Business Theme</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/hosting-south-africa-fun-theme/' rel='bookmark' title='Hosting South Africa Fun Theme'>Hosting South Africa Fun Theme</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/customizing-css-in-wp-mobile-theme/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Local Website Design</title>
		<link>http://yorgonestoridis.com/online-publishing/local-website-design/</link>
		<comments>http://yorgonestoridis.com/online-publishing/local-website-design/#comments</comments>
		<pubDate>Wed, 25 Apr 2012 10:07:48 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Astir Beach]]></category>
		<category><![CDATA[Best Facebook Pages]]></category>
		<category><![CDATA[Blog Master Class]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Facebook Developments]]></category>
		<category><![CDATA[Facebook Pages]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[Google +]]></category>
		<category><![CDATA[Google Top 10]]></category>
		<category><![CDATA[How to Build an Online Business]]></category>
		<category><![CDATA[How to Dominate Google Top 10]]></category>
		<category><![CDATA[Media Design]]></category>
		<category><![CDATA[Media Marketing Publishing]]></category>
		<category><![CDATA[Online Publishing]]></category>
		<category><![CDATA[Semiomantics Design]]></category>
		<category><![CDATA[Semiomantics Project Management]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[Vouliagmeni]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Web Design for Mobile Devices]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WP Best]]></category>
		<category><![CDATA[WP Best Classifieds]]></category>
		<category><![CDATA[WP Best Destination]]></category>
		<category><![CDATA[How to build a Local Website]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22801</guid>
		<description><![CDATA[How to build a Local Website Go Local is the name of the game in 2011/12 and the success of bringing the global web developments back home is a trend of the time. First it was about tagging people, now we tag locations, be it on social networks such as Facebook or on Photo sites, such as Picasa or Flickr. Based on the fact that surfers search for and prefer local business to cross border transactions, social networks namely have built in the local tags and stimulate users to hook media and events to geographically tagged locations. How to dominate the local market? In order to dominate the local market, you need to assess the use of the internet your neighbors make; chances are that they mostly hang out on social media, search Google and use email. This is of course an extremely simplified view but it gives an indication about where we need to build high visibility. You also want to have an idea about how people access the net and websites; you will notice an increased use of mobile deices, which means that your content needs to be formatted and optimized  for desktops as well as for tablets [...]
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/how-to-optimize-your-impact-on-social-and-mobile-networks/' rel='bookmark' title='How to Optimize your Impact on Social and Mobile Networks'>How to Optimize your Impact on Social and Mobile Networks</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>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/google-top-10-5/' rel='bookmark' title='Google Top 10 Dominate your Keyword 3'>Google Top 10 Dominate your Keyword 3</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/3-web-design-trends-in-2011/' rel='bookmark' title='3 Web Design Trends in 2011'>3 Web Design Trends in 2011</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/new-facebook-pages-publishing-concept/' rel='bookmark' title='New Facebook Pages Publishing Concept'>New Facebook Pages Publishing Concept</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="How_to_build_a_Local_Website"><h2>How to build a Local Website</h2></span>
<div class='toc wptoc'>
<h2>Contents</h2>
<ol class='toc-odd level-1'>
	<li>
		<a href="#How_to_build_a_Local_Website">How to build a Local Website</a>
		<ol class='toc-even level-2'>
			<li>
				<a href="#How_to_dominate_the_local_market">How to dominate the local market?</a>
			</li>
			<li>
				<a href="#How_to_Dominate_Google_Top_10">How to Dominate Google Top 10</a>
			</li>
			<li>
				<a href="#How_to_Dominate_Social_Networks">How to Dominate Social Networks</a>
			</li>
			<li>
				<a href="#How_to_dominate_the_Mobile_Web">How to dominate the Mobile Web</a>
			</li>
			<li>
				<a href="#How_to_manage_a_Local_Presence_online">How to manage a Local Presence online</a>
			</li>
			<li>
				<a href="#How_to_monetize_a_Local_Website">How to monetize a Local Website</a>
			</li>
			<li>
				<a href="#How_to_get_readers_to_the_Local_Website">How to get readers to the Local Website</a>
			</li>
</ol>
</ol>
</ol>
</div>
<div class='wptoc-end'> </div>
<p>Go Local is the name of the game in 2011/12 and the success of bringing the global web developments back home is a trend of the time. First it was about tagging people, now we tag locations, be it on social networks such as Facebook or on Photo sites, such as Picasa or Flickr.</p>
<p>Based on the fact that surfers search for and prefer local business to cross border transactions, social networks namely have built in the local tags and stimulate users to hook media and events to geographically tagged locations.</p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2012/04/astir-beach-4.jpg"><img class="alignnone size-large wp-image-22802" title="Vouliagmeni Local Footprints at Astir Beach" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/astir-beach-4-460x345.jpg" alt="Vouliagmeni Local Footprints at Astir Beach" width="460" height="345" /></a></p>
<span id="How_to_dominate_the_local_market"><h3>How to dominate the local market?</h3></span>
<p>In order to dominate the local market, you need to assess the use of the internet your neighbors make; chances are that they mostly hang out on social media, search Google and use email. This is of course an extremely simplified view but it gives an indication about where we need to build high visibility.</p>
<p>You also want to have an idea about how people access the net and websites; you will notice an increased use of mobile deices, which means that your content needs to be formatted and optimized  for desktops as well as for tablets and mobile phones.</p>
<p>Finally you may notice that surfers prefer visual content to text, which impacts on editing and publishing for multiple platforms.</p>
<span id="How_to_Dominate_Google_Top_10"><h3>How to Dominate Google Top 10</h3></span>
<p>In order to build high visibility on search returns, you need</p>
<ul>
<li>a local website.</li>
<li>make use of all possible Google Listings pertaining to the geographic location.</li>
<li>great content and consistent publishing to provide useful information and trigger conversation.</li>
</ul>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2012/04/astir-beach-3.jpg"><img class="alignnone size-large wp-image-22803" title="Astir Beach Vouliagmeni, Greece" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/astir-beach-3-460x345.jpg" alt="Astir Beach Vouliagmeni, Greece" width="460" height="345" /></a></p>
<span id="How_to_Dominate_Social_Networks"><h3>How to Dominate Social Networks</h3></span>
<p>To dominate social networks (Facebook, Google+, Twitter, LinkedIn) we need</p>
<ul>
<li>optimized profiles.</li>
<li>Facebook Pages.</li>
<li>a consistent flow of information to trigger attention and conversation.</li>
<li>an optimized set-up to assure traffic back to our websites (let the social networks work for us instead of the opposite).</li>
</ul>
<span id="How_to_dominate_the_Mobile_Web"><h3>How to dominate the Mobile Web</h3></span>
<p>To dominate the mobile web we need</p>
<ul>
<li>mobile versions of our websites (tablets and smartphones).</li>
<li>mobile search optimization.</li>
<li>ideally an App.</li>
<li>easy to use interactive functions.</li>
</ul>
<span id="How_to_manage_a_Local_Presence_online"><h3>How to manage a Local Presence online</h3></span>
<p>The answer is similar to managing a business online. There are three main elements I like to focus on:</p>
<ul>
<li>an optimized workflow to assure maximum productivity.</li>
<li>high quality content and content providers.</li>
<li>an integrated publishing network to hit all the important targets with per platform optimized content.</li>
</ul>
<p><a href="http://gardenroutepublishing.com/review/" target="_blank"><img class="alignnone size-large wp-image-22806" title="Local Website Theme for WordPress" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/local-website-2-460x345.jpg" alt="Local Website Theme for WordPress" width="460" height="345" /></a></p>
<span id="How_to_monetize_a_Local_Website"><h3>How to monetize a Local Website</h3></span>
<ul>
<li>Ads from Local Business.</li>
<li>Ads from external Business wanting to do business locally.</li>
<li>Eventually by integrating a local directory.</li>
<li>Eventually by integrating a real estate classifieds feature.</li>
<li>Eventually by integrating a service and products exchange.</li>
<li> … and more.</li>
</ul>
<span id="How_to_get_readers_to_the_Local_Website"><h3>How to get readers to the Local Website</h3></span>
<p>Just a few ideas:</p>
<ul>
<li>Talk about people.</li>
<li>Talk about events.</li>
<li>Talk about stories concerning the community.</li>
<li>Talk about Local Sports, Clubs, Associations.</li>
<li>Publish Pictures (people like to see their face and place).</li>
<li>Talk about local business.</li>
<li>Integrate a news wire from the major’s office.</li>
<li>Have a local Gossip column.</li>
<li>Let visitors contribute and discuss content.</li>
<li>Don’t forget rating.</li>
<li>Create competitions, contests, top 3 lists.</li>
<li>Exchange advertising space with local media to promote your site quickly an consistently.</li>
<li>Bring the conversation from social networks back to your site.</li>
<li>… and so much more!</li>
</ul>
<p>I hope this post helps your brainstorming when creating your local project. I will publish shortly a detailed project for my demo community, Vouliagmeni.</p>
<p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/how-to-optimize-your-impact-on-social-and-mobile-networks/' rel='bookmark' title='How to Optimize your Impact on Social and Mobile Networks'>How to Optimize your Impact on Social and Mobile Networks</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>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/google-top-10-5/' rel='bookmark' title='Google Top 10 Dominate your Keyword 3'>Google Top 10 Dominate your Keyword 3</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/3-web-design-trends-in-2011/' rel='bookmark' title='3 Web Design Trends in 2011'>3 Web Design Trends in 2011</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/new-facebook-pages-publishing-concept/' rel='bookmark' title='New Facebook Pages Publishing Concept'>New Facebook Pages Publishing Concept</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/online-publishing/local-website-design/feed/</wfw:commentRss>
		<slash:comments>2</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>WordPress 3.4 Beta</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/wordpress-3-4-beta/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/wordpress-3-4-beta/#comments</comments>
		<pubDate>Mon, 09 Apr 2012 08:36:35 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Semiomantics EVO]]></category>
		<category><![CDATA[Semiomantics Web Development]]></category>
		<category><![CDATA[Semiomantics XO]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Development]]></category>
		<category><![CDATA[Semiomantics EVO for WP 3.4]]></category>
		<category><![CDATA[Semiomantics XO for WordPress 3.4]]></category>
		<category><![CDATA[WordPress 3.4 Beta]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22757</guid>
		<description><![CDATA[WordPress 3.4 Beta Custom Headers and Backgrounds The release of WordPress 3.4 Beta raises a number of problemsquestions for theme designers in as much as Custom Headers and Custom Backgrounds are concerned. The implementation methods via add_custom_background() and add_custom_image_header() will be depreciated and replaced by a more powerful method via add_theme_support(). The impact for Semiomantics XO and EVO Due to the depreciation of the old calls, we will need to update the themes and make the modifications needed to take advantage of the new features provided by WordPress 3.4. The new theme versions will work with WP 3.4 minimum and must not be used with previous WP versions. Custom developments and child themes may need a special treatment, depending on the degree of customization. I will arrange for some developers calls or set up some tutorials in due course. For the time being I am testing WP 3.4 Beta to check backwards compatibility using our themes. I will keep you posted on results and updates.   Incoming search terms:wordpress 3 4custom backgrounds wordpress 3 4 backward compatiblewordpress 3 4 betawp beta 3 4Related posts: Semiomantics XO Transparent WordPress Drafts How to Customize your WordPress Typography WordPress Themes and Development Showcase [...]
Related posts:<ol>
<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-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/yorgo-nestoridis-development/wordpress-themes-and-development/' rel='bookmark' title='WordPress Themes and Development'>WordPress Themes and Development</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/showcase-portfolio-photo-theme-for-wordpress/' rel='bookmark' title='Showcase Portfolio Photo Theme for WordPress'>Showcase Portfolio Photo Theme for WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/yorgoo-blaster/yorgoo-blaster-yb271-beta/' rel='bookmark' title='YORGOO Blaster YB271 Beta'>YORGOO Blaster YB271 Beta</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="WordPress_3.4_Beta_Custom_Headers_and_Backgrounds"><h2>WordPress 3.4 Beta Custom Headers and Backgrounds</h2></span>
<p>The release of WordPress 3.4 Beta raises a number of problemsquestions for theme designers in as much as Custom Headers and Custom Backgrounds are concerned.</p>
<p>The implementation methods via <a href="http://codex.wordpress.org/Function_Reference/add_custom_background"><code>add_custom_background()</code></a> and <a href="http://codex.wordpress.org/Function_Reference/add_custom_image_header"><code>add_custom_image_header()</code></a> will be depreciated and replaced by a more powerful method via <a href="http://codex.wordpress.org/Function_Reference/add_theme_support"><code>add_theme_support()</code></a>.</p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2012/04/wordpress-tutorials2.jpg"><img class="alignnone size-large wp-image-22758" title="WordPress 3.4 Beta" src="http://yorgonestoridis.com/wp-content/uploads/2012/04/wordpress-tutorials2-460x213.jpg" alt="WordPress 3.4 Beta" width="460" height="213" /></a></p>
<span id="The_impact_for_Semiomantics_XO_and_EVO"><h3>The impact for Semiomantics XO and EVO</h3></span>
<p>Due to the depreciation of the old calls, we will need to update the themes and make the modifications needed to take advantage of the new features provided by WordPress 3.4. The new theme versions will work with WP 3.4 minimum and must not be used with previous WP versions.</p>
<p>Custom developments and child themes may need a special treatment, depending on the degree of customization. I will arrange for some developers calls or set up some tutorials in due course. For the time being I am testing WP 3.4 Beta to check backwards compatibility using our themes.</p>
<p>I will keep you posted on results and updates.</p>
<p> </p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/wordpress-3-4-beta/" title="wordpress 3 4">wordpress 3 4</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/wordpress-3-4-beta/" title="custom backgrounds wordpress 3 4 backward compatible">custom backgrounds wordpress 3 4 backward compatible</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/wordpress-3-4-beta/" title="wordpress 3 4 beta">wordpress 3 4 beta</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/wordpress-3-4-beta/" title="wp beta 3 4">wp beta 3 4</a></li></ul><p>Related posts:<ol>
<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-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/yorgo-nestoridis-development/wordpress-themes-and-development/' rel='bookmark' title='WordPress Themes and Development'>WordPress Themes and Development</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/showcase-portfolio-photo-theme-for-wordpress/' rel='bookmark' title='Showcase Portfolio Photo Theme for WordPress'>Showcase Portfolio Photo Theme for WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/yorgoo-blaster/yorgoo-blaster-yb271-beta/' rel='bookmark' title='YORGOO Blaster YB271 Beta'>YORGOO Blaster YB271 Beta</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/wordpress-3-4-beta/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Showcase Portfolio Photo Theme for WordPress</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/showcase-portfolio-photo-theme-for-wordpress/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/showcase-portfolio-photo-theme-for-wordpress/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 08:09:04 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Elegant Web Design]]></category>
		<category><![CDATA[Elegant WordPress]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Online Seminar]]></category>
		<category><![CDATA[Photo Publishing]]></category>
		<category><![CDATA[Photo Website]]></category>
		<category><![CDATA[Sell Photos and Media Online]]></category>
		<category><![CDATA[Semiomantics Design]]></category>
		<category><![CDATA[Semiomantics Elegance]]></category>
		<category><![CDATA[Semiomantics EVO]]></category>
		<category><![CDATA[Semiomantics Evolution]]></category>
		<category><![CDATA[Semiomantics Facebook Developments]]></category>
		<category><![CDATA[Semiomantics Mobile]]></category>
		<category><![CDATA[Semiomantics Photo Gallery]]></category>
		<category><![CDATA[Semiomantics Shop]]></category>
		<category><![CDATA[Semiomantics Web Development]]></category>
		<category><![CDATA[Semiomantics Ycademy]]></category>
		<category><![CDATA[Social Network Publishing]]></category>
		<category><![CDATA[Web Design for Mobile Devices]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Development]]></category>
		<category><![CDATA[WP Best]]></category>
		<category><![CDATA[WP Best Gallery]]></category>
		<category><![CDATA[WP Best Photo Theme]]></category>
		<category><![CDATA[WP Best Shop]]></category>
		<category><![CDATA[Ycademy]]></category>
		<category><![CDATA[Ycademy Online Seminar]]></category>
		<category><![CDATA[Best WordPress Photo Theme]]></category>
		<category><![CDATA[Best WP Photo Theme]]></category>
		<category><![CDATA[Best WP Portfolio]]></category>
		<category><![CDATA[EVO]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[WP Photo Ecommerce]]></category>
		<category><![CDATA[WP Showcase Theme]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22642</guid>
		<description><![CDATA[Media Focused Development for Professionals and Amateurs, The new Semiomantics EVO for WordPress sets new standards for beauty and excellent publishing paired with eCommerce.
Related posts:<ol>
<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>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/' rel='bookmark' title='The 1001 Faces of Semiomantics XO'>The 1001 Faces of Semiomantics XO</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-publishing-1/ycademy-online-seminar-photo-publishing-with-evo-for-wordpress/' rel='bookmark' title='Ycademy Online Seminar Photo Publishing with Evo for WordPress'>Ycademy Online Seminar Photo Publishing with Evo for WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/best-car-dealer-theme-for-wordpress/' rel='bookmark' title='Best Car Dealer Theme for WordPress'>Best Car Dealer Theme for WordPress</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Best_Portfolio_and_Photo_Custom_Theme:_Semiomantics_EVO"><h2>Best Portfolio and Photo Custom Theme: Semiomantics EVO</h2></span>
<p>WordPress offers a perfect backbone for Media Publishing and eCommerce on a single site.</p>
<p>Semiomantics Developments for WordPress assemble the best modules available to offer custom solutions to satisfy the needs of professionals. EVO is a theme base for custom design and development focusing namely on media producers, photographers, graphic and web designers.</p>
<span id="Semiomantics_EVO"><h3>Semiomantics EVO</h3></span>
<p>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/showcase-portfolio-photo-theme-for-wordpress/attachment/evo-1-2/' title='evo-1'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/evo-11-200x150.jpg" class="attachment-thumbnail" alt="evo-1" title="evo-1" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/showcase-portfolio-photo-theme-for-wordpress/attachment/evo-2-3/' title='evo-2'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/evo-22-200x150.jpg" class="attachment-thumbnail" alt="evo-2" title="evo-2" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/showcase-portfolio-photo-theme-for-wordpress/attachment/evo-screen-3/' title='evo-screen-3'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/evo-screen-3-200x150.jpg" class="attachment-thumbnail" alt="evo-screen-3" title="evo-screen-3" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/showcase-portfolio-photo-theme-for-wordpress/attachment/evo-screen-4/' title='evo-screen-4'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/evo-screen-4-200x150.jpg" class="attachment-thumbnail" alt="evo-screen-4" title="evo-screen-4" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/showcase-portfolio-photo-theme-for-wordpress/attachment/features-3/' title='features-3'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/features-3-200x150.jpg" class="attachment-thumbnail" alt="features-3" title="features-3" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/showcase-portfolio-photo-theme-for-wordpress/attachment/features-4/' title='features-4'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/features-4-200x150.jpg" class="attachment-thumbnail" alt="features-4" title="features-4" /></a>
<br />
Semiomantics EVO is based and inspired by the work of the best designers and developers out there who take advantage of the latest developments of WordPress, HTML5, CSS3, Java, Ajax and the mobile web.</p>
<p>Code and Scripts have been adapted and modified to satisfy Semiomantics’ highest standards of optimization for excellent publishing, targeting Search Engines and Social Networks.</p>
<p>Semiomantics EVO replaces the flash template Semiomantics Evo and constitutes a second cord on Semiomantics Arc.</p>
<span id="Semiomantics_Developments"><h3>Semiomantics Developments</h3></span>
<p>The recent release of XO Edition 2012 remains the blockbuster product of Semiomantics in 2012; however we are working on a new XO which will replace XO 12. A new architecture will allow to eliminate some of the heavy plugins we are using at present with XO namely to satisfy the standards of mobile development.</p>
<span id="Shoot_Share_Sell"><h3>Shoot, Share, Sell</h3></span>
<p>Semiomantics EVO is the ideal platform for high quality editing, media publishing and eCommerce. Semiomantics Developers and Designers are invited to join the <a title="Ycademy Online Seminar: Semiomantics EVO" href="http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/ycademy-online-seminar-photo-publishing-with-evo-for-wordpress/" target="_blank">Ycademy February Online Seminar </a>which is held this coming week-end.</p>
<p>Shoot Images and Videos with your camera or mobile device, load them to your EVO (can be done from the mobile device directly) and let EVO share your content with your friends and acquaintances on Social Networks without losing the control over your media or products. The shop is easily accessible, fully integrated and can also be added to your Facebook page for example.</p>
<p>Look out for more soon.</p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/showcase-portfolio-photo-theme-for-wordpress/" title="showcase portfolio">showcase portfolio</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/showcase-portfolio-photo-theme-for-wordpress/" title="wordpress photography themes">wordpress photography themes</a></li></ul><p>Related posts:<ol>
<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>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/' rel='bookmark' title='The 1001 Faces of Semiomantics XO'>The 1001 Faces of Semiomantics XO</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-publishing-1/ycademy-online-seminar-photo-publishing-with-evo-for-wordpress/' rel='bookmark' title='Ycademy Online Seminar Photo Publishing with Evo for WordPress'>Ycademy Online Seminar Photo Publishing with Evo for WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/best-car-dealer-theme-for-wordpress/' rel='bookmark' title='Best Car Dealer Theme for WordPress'>Best Car Dealer Theme for WordPress</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/showcase-portfolio-photo-theme-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</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>Semiomantics XO Transparent WordPress Drafts</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 11:19:44 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Global The Brand]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Semiomantics XO]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Development]]></category>
		<category><![CDATA[WP Best Business Theme]]></category>
		<category><![CDATA[Best WordPress Theme]]></category>
		<category><![CDATA[Custom WP Theme]]></category>
		<category><![CDATA[Transparent Custom Theme]]></category>
		<category><![CDATA[Transparent WordPress]]></category>
		<category><![CDATA[Transparent WordPress XO Theme]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22562</guid>
		<description><![CDATA[Transparent WordPress Custom Theme Playing with the XO Theme Version 3.3.x from Semiomantics and CSS3, I notice how easy it is for most anyone to customize the XO Theme by adding transparencies and other CSS3 elements. Here below you find some drafts. You may visit the test site from : http://globalthebrand.com. Transparent WordPress Gallery Scripts and Plug-ins On the test site we use the Semiomantics Widgets and Theme Handler plug-in as well as a modified Supersized plug-in; the latter needs some more work to make it more responsive. Also we use TubePress which behaves fine also on mobile. The Theme is Semiomantics XO with 3 custom child-themes; any theme can be associated with any page, post, category, tag or sidebar.       Incoming search terms:xo theme wordpresstheme blogtheme wordpress typographyxo wordpress themewordpress semiomanticswindows 8 theme for wordpresswordpress transpert themewordpress transparent responsive themewordpress theme windows 8transparent wordpress theme cssRelated posts: Transparent WordPress Semiomantics XO Transparent WordPress Theme Design The 1001 Faces of Semiomantics XO Sober WordPress with Semiomantics XO XO Photo Press WordPress Theme
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/transparent-wordpress-semiomantics-xo/' rel='bookmark' title='Transparent WordPress Semiomantics XO'>Transparent WordPress Semiomantics XO</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-publishing-1/the-1001-faces-of-semiomantics-xo/' rel='bookmark' title='The 1001 Faces of Semiomantics XO'>The 1001 Faces of Semiomantics XO</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/sober-wordpress-with-semiomantics-xo/' rel='bookmark' title='Sober WordPress with Semiomantics XO'>Sober 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="Transparent_WordPress_Custom_Theme"><h2>Transparent WordPress Custom Theme</h2></span>
<p>Playing with the XO Theme Version 3.3.x from Semiomantics and CSS3, I notice how easy it is for most anyone to customize the XO Theme by adding transparencies and other CSS3 elements. Here below you find some drafts. You may visit the test site from : <a title="Global The Brand Demo Transparent WordPress Theme" href="http://globalthebrand.com" target="_blank">http://globalthebrand.com</a>.</p>
<span id="Transparent_WordPress_Gallery"><h3>Transparent WordPress Gallery</h3></span>

<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/attachment/globalbrand-screens-1/' title='XO Theme Archive'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/globalbrand-screens-1-200x150.jpg" class="attachment-thumbnail" alt="XO Theme Archive" title="XO Theme Archive" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/attachment/globalbrand-screens-8/' title='XO Theme Blog Home 3'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/globalbrand-screens-8-200x150.jpg" class="attachment-thumbnail" alt="XO Theme Blog Home 3" title="XO Theme Blog Home 3" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/attachment/globalbrand-screens-4/' title='XO Theme Blog Home Layout'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/globalbrand-screens-4-200x150.jpg" class="attachment-thumbnail" alt="XO Theme Blog Home Layout" title="XO Theme Blog Home Layout" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/attachment/globalbrand-screens-5/' title='XO Theme Blog Home Layout 2'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/globalbrand-screens-5-200x150.jpg" class="attachment-thumbnail" alt="XO Theme Blog Home Layout 2" title="XO Theme Blog Home Layout 2" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/attachment/globalbrand-screens-6/' title='XO Theme Front Page'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/globalbrand-screens-6-200x150.jpg" class="attachment-thumbnail" alt="XO Theme Front Page" title="XO Theme Front Page" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/attachment/globalbrand-screens-7/' title='XO Theme Front Page 2'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/globalbrand-screens-7-200x150.jpg" class="attachment-thumbnail" alt="XO Theme Front Page 2" title="XO Theme Front Page 2" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/attachment/globalbrand-screens-3/' title='XO Theme Fullscreen Slider'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/globalbrand-screens-3-200x150.jpg" class="attachment-thumbnail" alt="XO Theme Fullscreen Slider" title="XO Theme Fullscreen Slider" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/attachment/globalbrand-screens9/' title='XO Theme Presentation Slider'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/globalbrand-screens9-200x150.jpg" class="attachment-thumbnail" alt="XO Theme Presentation Slider" title="XO Theme Presentation Slider" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/attachment/globalbrand-screens-2/' title='XO Theme Video Gallery'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/02/globalbrand-screens-2-200x150.jpg" class="attachment-thumbnail" alt="XO Theme Video Gallery" title="XO Theme Video Gallery" /></a>

<span id="Scripts_and_Plug-ins"><h3>Scripts and Plug-ins</h3></span>
<p>On the test site we use the Semiomantics Widgets and Theme Handler plug-in as well as a modified Supersized plug-in; the latter needs some more work to make it more responsive. Also we use TubePress which behaves fine also on mobile.</p>
<p>The Theme is <a title="Semiomantics XO - by Semiomantics" href="http://semiomantics.com" target="_blank">Semiomantics XO</a> with 3 custom child-themes; any theme can be associated with any page, post, category, tag or sidebar.</p>
<p> </p>
<p> </p>
<p> </p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/" title="xo theme wordpress">xo theme wordpress</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/" title="theme blog">theme blog</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/" title="theme wordpress typography">theme wordpress typography</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/" title="xo wordpress theme">xo wordpress theme</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/" title="wordpress semiomantics">wordpress semiomantics</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/" title="windows 8 theme for wordpress">windows 8 theme for wordpress</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/" title="wordpress transpert theme">wordpress transpert theme</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/" title="wordpress transparent responsive theme">wordpress transparent responsive theme</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/" title="wordpress theme windows 8">wordpress theme windows 8</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-transparent-wordpress-drafts/" title="transparent wordpress theme css">transparent wordpress theme css</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/transparent-wordpress-semiomantics-xo/' rel='bookmark' title='Transparent WordPress Semiomantics XO'>Transparent WordPress Semiomantics XO</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-publishing-1/the-1001-faces-of-semiomantics-xo/' rel='bookmark' title='The 1001 Faces of Semiomantics XO'>The 1001 Faces of Semiomantics XO</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/sober-wordpress-with-semiomantics-xo/' rel='bookmark' title='Sober WordPress with Semiomantics XO'>Sober 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/semiomantics-xo-transparent-wordpress-drafts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The 1001 Faces of Semiomantics XO</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/#comments</comments>
		<pubDate>Mon, 30 Jan 2012 11:31:43 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Elegant WordPress]]></category>
		<category><![CDATA[Online Seminar]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[Publishing]]></category>
		<category><![CDATA[Publishing Online]]></category>
		<category><![CDATA[Semantic Publishing]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Semiomantics Mobile]]></category>
		<category><![CDATA[Semiomantics Project Management]]></category>
		<category><![CDATA[Semiomantics Web Development]]></category>
		<category><![CDATA[Semiomantics XO]]></category>
		<category><![CDATA[Semiomantics Ycademy]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Social Network Publishing]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Development]]></category>
		<category><![CDATA[WP Best]]></category>
		<category><![CDATA[WP Best Business Theme]]></category>
		<category><![CDATA[WP Best Newspaper Theme]]></category>
		<category><![CDATA[Ycademy]]></category>
		<category><![CDATA[Ycademy Online Seminar]]></category>
		<category><![CDATA[Best WordPress Theme]]></category>
		<category><![CDATA[Responsive Theme]]></category>
		<category><![CDATA[XO Theme for WordPress]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22536</guid>
		<description><![CDATA[XO for WordPress is a responsive, flexible and highly customizable Theme for high performance and excellence in publishing. Developed by Semiomantics since 2007, the XO is mainly used for custom High End sites. A DIY version is available since 2011 at http://semiomantics.com. News are published to Facebook at http://facebook.com/semiomantics.
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-blog/' rel='bookmark' title='Semiomantics XO Blog'>Semiomantics XO Blog</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>
<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/semiomantics-xo-2010-edition/' rel='bookmark' title='Semiomantics XO 2010 Edition'>Semiomantics XO 2010 Edition</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>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="New_Semiomantics_XO_Theme_for_WordPress"><h2>New Semiomantics XO Theme for WordPress</h2></span>

<a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/attachment/xo12screens1/' title='xo12screens1'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/xo12screens1-200x150.jpg" class="attachment-thumbnail" alt="xo12screens1" title="xo12screens1" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/attachment/xo12screens10/' title='xo12screens10'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/xo12screens10-200x150.jpg" class="attachment-thumbnail" alt="xo12screens10" title="xo12screens10" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/attachment/xo12screens2/' title='xo12screens2'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/xo12screens2-200x150.jpg" class="attachment-thumbnail" alt="xo12screens2" title="xo12screens2" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/attachment/xo12screens3/' title='xo12screens3'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/xo12screens3-200x150.jpg" class="attachment-thumbnail" alt="xo12screens3" title="xo12screens3" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/attachment/xo12screens4/' title='xo12screens4'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/xo12screens4-200x150.jpg" class="attachment-thumbnail" alt="xo12screens4" title="xo12screens4" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/attachment/xo12screens5/' title='xo12screens5'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/xo12screens5-200x150.jpg" class="attachment-thumbnail" alt="xo12screens5" title="xo12screens5" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/attachment/xo12screens6/' title='xo12screens6'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/xo12screens6-200x150.jpg" class="attachment-thumbnail" alt="xo12screens6" title="xo12screens6" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/attachment/xo12screens7/' title='xo12screens7'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/xo12screens7-200x150.jpg" class="attachment-thumbnail" alt="xo12screens7" title="xo12screens7" /></a>
<a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/attachment/xo12screens9/' title='xo12screens9'><img width="200" height="150" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/xo12screens9-200x150.jpg" class="attachment-thumbnail" alt="xo12screens9" title="xo12screens9" /></a>

<p>The above Screenshots represent just some of the pages, features and looks the 2012 Edition of the high performance XO Theme for WordPress has up its sleeves. The above site is the fruit of the 2 Days Ycademy Online Seminar for Semiomantics Developers and designers.</p>
<span id="XO_Theme_Features"><h3>XO Theme Features</h3></span>
<p>The 2012 Edition of XO is focused on even more flexibility in as much as editing, cross-browser and cross-platform compatibility are concerned.</p>
<p>The Site displays perfectly on Mobile devices, showing responsiveness also of the plugged in scripts chosen of which some have been adapted to satisfy the high standards of Semiomantics Publishing Scripts for Excellence.</p>
<p>The site elaborated at the Ycademy Online Seminar this past week-end features some smashing features, such as:</p>
<ul>
<li>Background Slideshow, customizable for each page, post or archive</li>
<li>Built in Directory</li>
<li>Media Library for YouTube and Vimeo</li>
<li>Pro-sliders which can be deployed anywhere on the site</li>
<li>In addition to the responsive design, a separate light Mobile Version is available</li>
<li>Bold and Efficient Navigation</li>
<li>Built in Custom Fonts</li>
<li>Social Network connectivity and publishing</li>
<li>and much more.</li>
</ul>
<span id="XO_for_Developers"><h3>XO for Developers</h3></span>
<p>The XO script is well commented and offers designers a clean and straight forward environment for custom developments. XO uses best practices for WordPress development and makes the best use of the possibilities offered by the WP back-bone, assuring smooth integration and optimized conflict handling.</p>
<span id="XO_for_Designers"><h3>XO for Designers</h3></span>
<p>XO is a great playground for designers. The DIY version allows anyone to adapt layout and colors to taste right from the back-office; there is no need to have any knowledge about coding or designing. The theme behaves like a Chameleon and adapts to specific needs with just a few clicks of the mouse: pre-configured layout elements transform your XO quickly into a Magazine, Newspaper, personal Author Blog, a Media Hub, a Shop, a Marketing Machine, a Social Media Publisher, a Product Promoter or a Fan Site or most anything your imagination dictates.</p>
<p>For the professional designer, XO offers a well commented environment. Custom code can be added right from the dashboard or, as I prefer using a child theme. XO is tuned for HTML5 and CSS3 use, making it a modern and inspiring framework for exceptional design effects.</p>
<span id="XO_out_of_the_Box"><h3>XO out of the Box</h3></span>
<p>Out of the box, the XO Theme for WordPress provides a stable and reliable, robust and optimized solution for common use. It provides built in features such a slider with multiple transitions and a one click selector for easy use.</p>
<p>Layouts can be easily adapted to needs and purpose of the site. In fact, most custom designers rely on the theme engine to format efficiently layouts.</p>
<span id="Custom_XO"><h3>Custom XO</h3></span>
<p>The site featured in the above gallery uses a few pro plug-ins to add functionality in function of customer requirements. The integration of such add on scripts is a relatively simple process for designers and developers.</p>
<span id="Customization_of_the_XO_Theme"><h3>Customization of the XO Theme</h3></span>
<p>XO has been developed for high performance, productivity, excellence in publishing and flexibility. For the professional users, the XO Theme constitues a solid base with a huge potential for customization and creative artistic expression.</p>
<span id="Semiomantics_XO_2012_Release"><h3>Semiomantics XO 2012 Release</h3></span>
<p>The release of XO Version 3.3.x is planned for the first week of February. The present Release Candidate has been thoroughly tested. A few minor issues will be taken care off before XO will be available to the public.</p>
<span id="Upgrading_existing_XO_installations"><h3>Upgrading existing XO installations</h3></span>
<p>If your site is running on Semiomantics XO suing basic customization, the theme can just be overwritten. (Save your custom CSS beforehand.)</p>
<p>If you are using a custom version with custom developments or a child theme, some of your customization will need to be adapted to the enhancements of XO 2012. This concerns namely custom headers and footers as well as custom functions.</p>
<p>Support for developers and designers is available as usual at our Ycademy Online Calls and Seminars or through Semiomantics Pro Support.</p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/" title="wordpress xo theme">wordpress xo theme</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/" title="1001 font mouse fruit faces">1001 font mouse fruit faces</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/" title="1001 фейс">1001 фейс</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/" title="xo theme">xo theme</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/" title="xotheme">xotheme</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/semiomantics-xo-blog/' rel='bookmark' title='Semiomantics XO Blog'>Semiomantics XO Blog</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>
<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/semiomantics-xo-2010-edition/' rel='bookmark' title='Semiomantics XO 2010 Edition'>Semiomantics XO 2010 Edition</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>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/the-1001-faces-of-semiomantics-xo/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Ycademy Online Seminar January 2012</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-january-2012/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-january-2012/#comments</comments>
		<pubDate>Tue, 24 Jan 2012 10:40:09 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Facebook Developments]]></category>
		<category><![CDATA[Facebook Marketing Ycademy]]></category>
		<category><![CDATA[Online Seminar]]></category>
		<category><![CDATA[Publishing Online]]></category>
		<category><![CDATA[Semiomantics]]></category>
		<category><![CDATA[Semiomantics XO]]></category>
		<category><![CDATA[Semiomantics Ycademy]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Ycademy]]></category>
		<category><![CDATA[Responsive WordPress Theme]]></category>
		<category><![CDATA[XO]]></category>
		<category><![CDATA[XO Theme for WordPress]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22516</guid>
		<description><![CDATA[Ycademy Online Seminar January 2012 - The XO Theme for WordPress remains the most flexible theme for custom development, accessible to most anyone
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/wp-best-shop/' rel='bookmark' title='Ycademy Online Seminar January 2010'>Ycademy Online Seminar January 2010</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/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar/' rel='bookmark' title='Ycademy Online Seminar'>Ycademy Online Seminar</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-april-2011/' rel='bookmark' title='Ycademy Online Seminar April 2011'>Ycademy Online Seminar April 2011</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/ycademy-online-publishing-seminar/' rel='bookmark' title='Ycademy Online Publishing Seminar'>Ycademy Online Publishing Seminar</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Semiomantics_XO_with_CSS3_and_HTML5"><h2>Semiomantics XO with CSS3 and HTML5</h2></span>
<p>Time has come to learn about new technologies available for web designers and developers. All common browsers are increasingly able to read and interpret CSS 3 and HTML5 and about all computers are equipped to read java and jQuery. Therefore new possibilities become available to XO developers which we will focus on during the January Seminar.</p>
<span id="XO_Theme_for_WordPress"><h2>XO Theme for WordPress</h2></span>
<p>XO has evolved over the past 4 years along with WordPress Developments. The theme has become responsive and shows perfectly on smart phones and tablets.</p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2012/01/screens2h1-300.jpg"><img class="alignnone size-large wp-image-22518" title="screens2h1-300" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/screens2h1-300-460x213.jpg" alt="XO Theme for WordPress" width="460" height="213" /></a></p>
<span id="XO_Edition_2012"><h2>XO Edition 2012</h2></span>
<p>Subsequent to the release of WordPress 3.3.x XO needed some adjustments and updates which we have implemented and tested. New design functions become available for advanced customization. XO remains the most flexible theme for custom development, accessible to most anyone.</p>
<span id="The_XO_Seminar"><h3>The XO Seminar</h3></span>
<p>The goal of the seminar is to become familiar with XO and it’s new features as well as to learn how CSS3, HTML5 and jQuery allow to adapt XO to most any customer’s needs.</p>
<p>Some of the technical issues we will have a detailed look at are:</p>
<ul>
<li>Transparencies with CSS3</li>
<li>Background Sliders</li>
<li>Mobile Verions using WPTouch Pro</li>
<li>Content and Frame sliders with Pro Slider and SlideDeck Pro</li>
<li>Social Network connectivity with FacePages</li>
<li>How to make a WP theme responsive (adapting to different screen sizes such as Smart Phones Tablets and bigger)</li>
</ul>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2012/01/mobile1-800.jpg"><img class="alignnone size-large wp-image-22519" title="XO on Mobile" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/mobile1-800-460x306.jpg" alt="XO on Mobile" width="460" height="306" /></a></p>
<span id="How_to_expand_XO_functionality"><h3>How to expand XO functionality?</h3></span>
<p>The most obvious expansions are via plug-ins. We will show how to make the best use of plug-ins for the Mobile Web, Social Networking, Social Media Publishing, Social Network Marketing as well as for more attractive display. Time permitting we will look into additional functions, such as shopping cart or marketing specific scripts.</p>
<p>We also will start looking into another important chapter:</p>
<p><strong>How to convert your XO sites into a Mobile App!</strong></p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2012/01/mobile2-460.jpg"><img class="alignnone size-full wp-image-22522" title="XO on iPhone" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/mobile2-460.jpg" alt="XO on iPhone" width="460" height="690" /></a></p>
<span id="Build_an_extraordinary_Site"><h3>Build an extraordinary Site</h3></span>
<p>In order to make the understanding easier, we will build a new site during the 2 days event. Please join our pre-seminar call on Thursday to prepare the event by setting up a new XO powered site.</p>
<span id="Materials"><h3>Materials</h3></span>
<p>All materials will be provided. You will just need some images/photos, videos and other content you may want to use to populate the XO site.</p>
<span id="Schedule"><h3>Schedule</h3></span>
<p>Saturday and Sunday, 28/29 January, 2012 from 1 pm London time till 9 pm London time.</p>
<span id="Tickets"><h3>Tickets</h3></span>
<p>Tickets are available on our new shop at HIOD.com. Please click on the below image to order.</p>
<p><a href="http://hiod.com/shop/ycademy-online-seminar-tickets/ycademy-online-seminar-january-2012/" rel="me" target="_blank"><img class="alignnone size-large wp-image-22521" title="Ycademy Online Seminar Ticket" src="http://yorgonestoridis.com/wp-content/uploads/2012/01/512x512-ycademy-shop-1-460x460.png" alt="Ycademy Online Seminar Ticket" width="460" height="460" /></a></p>
<p>Discounts as usual for Ycademy Pros: Please mail Bianca at bianca(at)ycademy.com for the coupon code.</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-january-2012/" title="русские темы для wordpress 3 3">русские темы для wordpress 3 3</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/wp-best-shop/' rel='bookmark' title='Ycademy Online Seminar January 2010'>Ycademy Online Seminar January 2010</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/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar/' rel='bookmark' title='Ycademy Online Seminar'>Ycademy Online Seminar</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-april-2011/' rel='bookmark' title='Ycademy Online Seminar April 2011'>Ycademy Online Seminar April 2011</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/ycademy-online-publishing-seminar/' rel='bookmark' title='Ycademy Online Publishing Seminar'>Ycademy Online Publishing Seminar</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/ycademy-online-seminar-january-2012/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Christmas Media Design Seminar</title>
		<link>http://yorgonestoridis.com/ycademy-online-seminar/christmas-media-design-seminar/</link>
		<comments>http://yorgonestoridis.com/ycademy-online-seminar/christmas-media-design-seminar/#comments</comments>
		<pubDate>Thu, 08 Dec 2011 08:35:40 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Digital Media Design]]></category>
		<category><![CDATA[Media Design]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Ycademy Online Seminar]]></category>
		<category><![CDATA[After Effects Seminar]]></category>
		<category><![CDATA[Christmas Media Design]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22469</guid>
		<description><![CDATA[Christmas Media Design at Ycademy The Ycademy Seminar in December will focus on Christmas Media, namely on working with Adobe After Effects.In stead of producing static Christmas cards participants will be able to add motion, sound and other effects to produce a stunning customized Christmas Clip. The above draft for a UVUYO video is a typical example for what After Effects can do for you. Schedule The Christmas Media Design Seminar will take place on December 17, 201, starting at 1 pm London time and closing at 9 pm London time. As we have only one day available for the December Seminar, we will use all Daily Call sessions for an introduction into the secrets of After Effects. All pre-seminar calls will be recorded as well and video tutorials will be made available to seminar participants. Goals Acquire enough After Effects related knowledge to be able to work with After Effects templates and to customize, adapt or modify them. All participants will create a customized Christmas Clip. Materials Participants need Adobe’s After Effects, preferably CS 5.5 64 bit version, however CS4 running on 32 bit will do. For Customization, you may want to use some of your family photos or, [...]
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-media-design-online-seminar/' rel='bookmark' title='Digital Media Design Online Seminar'>Digital Media Design Online Seminar</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/yorgo-media-design/' rel='bookmark' title='Yorgo Media Design'>Yorgo Media Design</a></li>
<li><a href='http://yorgonestoridis.com/media-marketing-publishing/photo-media-stock-seminar/' rel='bookmark' title='Photo Media Stock Seminar'>Photo Media Stock Seminar</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/online-media-production-ycademy/' rel='bookmark' title='Online Media Production Ycademy'>Online Media Production Ycademy</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/social-media-marketing-news-102/' rel='bookmark' title='Social Media Marketing Seminar'>Social Media Marketing Seminar</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Christmas_Media_Design_at_Ycademy"><h2>Christmas Media Design at Ycademy</h2></span>
<p>The Ycademy Seminar in December will focus on Christmas Media, namely on working with Adobe After Effects.In stead of producing static Christmas cards participants will be able to add motion, sound and other effects to produce a stunning customized Christmas Clip.</p>
<p><iframe width="640" height="395" src="http://www.youtube.com/embed/iL0hEW6CeSw?rel=0" frameborder="0" allowfullscreen></iframe></p>
<p>The above draft for a UVUYO video is a typical example for what After Effects can do for you.</p>
<span id="Schedule"><h3>Schedule</h3></span>
<p>The Christmas Media Design Seminar will take place on December 17, 201, starting at 1 pm London time and closing at 9 pm London time.</p>
<p>As we have only one day available for the December Seminar, we will use all Daily Call sessions for an introduction into the secrets of After Effects. All pre-seminar calls will be recorded as well and video tutorials will be made available to seminar participants.</p>
<span id="Goals"><h3>Goals</h3></span>
<p>Acquire enough After Effects related knowledge to be able to work with After Effects templates and to customize, adapt or modify them.</p>
<p>All participants will create a customized Christmas Clip.</p>
<span id="Materials"><h3>Materials</h3></span>
<p>Participants need Adobe’s After Effects, preferably CS 5.5 64 bit version, however CS4 running on 32 bit will do.</p>
<p>For Customization, you may want to use some of your family photos or, if you create a business clip, some business related pictures , screen-shots or graphics.</p>
<p>All other materials, namely professional templates, will be provided.</p>
<span id="Tickets"><h3>Tickets</h3></span>
<p>Special Christmas price: $45</p>
<p>Discounts as usual for Ycademy Pros.</p>
<div id="attachment_22470" class="wp-caption alignnone" style="width: 508px"><a href="http://shop.yorgonestoridis.com/web-design/christmas-media-design/" target="_blank"><img class="size-full wp-image-22470 " title="512x512-ycademy-shop-1" src="http://yorgonestoridis.com/wp-content/uploads/2011/12/512x512-ycademy-shop-1.png" alt="Christmas Media Design" width="498" height="498" /></a><p class="wp-caption-text">Click to get your Ticket</p></div>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/ycademy-online-seminar/christmas-media-design-seminar/" title="after effects seminar greece">after effects seminar greece</a></li><li><a href="http://yorgonestoridis.com/ycademy-online-seminar/christmas-media-design-seminar/" title="desain seminar">desain seminar</a></li><li><a href="http://yorgonestoridis.com/ycademy-online-seminar/christmas-media-design-seminar/" title="what are the media effects during christmas">what are the media effects during christmas</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/digital-media-design-online-seminar/' rel='bookmark' title='Digital Media Design Online Seminar'>Digital Media Design Online Seminar</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/yorgo-media-design/' rel='bookmark' title='Yorgo Media Design'>Yorgo Media Design</a></li>
<li><a href='http://yorgonestoridis.com/media-marketing-publishing/photo-media-stock-seminar/' rel='bookmark' title='Photo Media Stock Seminar'>Photo Media Stock Seminar</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/online-media-production-ycademy/' rel='bookmark' title='Online Media Production Ycademy'>Online Media Production Ycademy</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/social-media-marketing-news-102/' rel='bookmark' title='Social Media Marketing Seminar'>Social Media Marketing Seminar</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/ycademy-online-seminar/christmas-media-design-seminar/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What is a Facebook Business Account?</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-marketing/social-media-marketing-yorgo-nestoridis-marketing/what-is-a-facebook-business-account/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-marketing/social-media-marketing-yorgo-nestoridis-marketing/what-is-a-facebook-business-account/#comments</comments>
		<pubDate>Fri, 25 Nov 2011 18:00:37 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Facebook]]></category>
		<category><![CDATA[Facebook Pages]]></category>
		<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Social Media Marketing]]></category>
		<category><![CDATA[Facebook Business Pages]]></category>
		<category><![CDATA[What is a Facebook Business Account]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=22412</guid>
		<description><![CDATA[Facebook Business Account What is the difference between a Business and a Personal Account? Which is the ideal solution for you and what are the implications of your choice? First of all, be aware that according to Facebook rules you are not allowed to use multiple Facebook Accounts. However, you may create multiple Advertizing Accounts as a Managed Advertiser having a dedicated Facebook Representative. What is a Facebook Business Account? You can set up a Facebook Business Account, if you don’t already have a standard account, Business Accounts are mainly designed for Advertisers and to manage pages. How to create a Facebook Business Account To create a business account you start by setting up a Facebook Ad or a Facebook Page.Once you have provided the required information, you will be taken to the log-in page and you will be asked if you have already a Facebook Account.  Select “I do not have a Facebook account” and continue by providing email and date of birth. What can you do or not do with a Business Account As the owner of a Business Account you can view and edit your pages and ads, add photos or videos and consult stats relating to [...]
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/social-media/twitter/facebook-and-home-business/' rel='bookmark' title='Facebook and Home Business'>Facebook and Home Business</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>
<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/ycademy/best-facebook-pages-2/' rel='bookmark' title='Best Facebook Pages'>Best Facebook Pages</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/facebook-marketing-2/' rel='bookmark' title='Facebook Marketing'>Facebook Marketing</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="Facebook_Business_Account"><h2>Facebook Business Account</h2></span>
<p>What is the difference between a Business and a Personal Account? Which is the ideal solution for you and what are the implications of your choice?</p>
<p>First of all, be aware that according to Facebook rules you are not allowed to use multiple Facebook Accounts. However, you may create multiple Advertizing Accounts as a Managed Advertiser having a dedicated Facebook Representative.</p>
<span id="What_is_a_Facebook_Business_Account"><h3>What is a Facebook Business Account?</h3></span>
<p>You can set up a Facebook Business Account, if you don’t already have a standard account,</p>
<p>Business Accounts are mainly designed for Advertisers and to manage pages.</p>
<p><a href="http://facebook.com/semiomantics" target="_blank"><img class="alignnone size-full wp-image-22413" title="yorgonestoridis" src="http://yorgonestoridis.com/wp-content/uploads/2011/11/yorgonestoridis.jpg" alt="Facebook Pages" width="850" height="315" /></a></p>
<span id="How_to_create_a_Facebook_Business_Account"><h3>How to create a Facebook Business Account</h3></span>
<p>To create a business account you start by setting up a Facebook Ad or a Facebook Page.Once you have provided the required information, you will be taken to the log-in page and you will be asked if you have already a Facebook Account.  Select “I do not have a Facebook account” and continue by providing email and date of birth.</p>
<span id="What_can_you_do_or_not_do_with_a_Business_Account"><h3>What can you do or not do with a Business Account</h3></span>
<p>As the owner of a Business Account you can view and edit your pages and ads, add photos or videos and consult stats relating to your pages and ads.</p>
<p>You cannot see other users profiles or timelines as Business Accounts have limited access to information of Facebook.</p>
<p>You cannot see Facebook content that does not live on your pages.</p>
<p>Business accounts cannot be found on search or added as friends.</p>
<p>Business accounts cannot send or receive Friends Requests.</p>
<span id="Converting_Business_Accounts"><h3>Converting Business Accounts</h3></span>
<p>A business account can be converted into a regular account. Once done, the process cannot be reversed.</p>
<span id="Note:_The_Big_Disadvantage"><h3>Note: The Big Disadvantage</h3></span>
<p>The big disadvantage of Business Accounts are their absence from the internal search and friend feature, making it almost compulsory to spend big time and/or money to promote the content.</p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-marketing/social-media-marketing-yorgo-nestoridis-marketing/what-is-a-facebook-business-account/" title="facebook business account">facebook business account</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-marketing/social-media-marketing-yorgo-nestoridis-marketing/what-is-a-facebook-business-account/" title="facebook">facebook</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-marketing/social-media-marketing-yorgo-nestoridis-marketing/what-is-a-facebook-business-account/" title="business not allowed in facebook">business not allowed in facebook</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-marketing/social-media-marketing-yorgo-nestoridis-marketing/what-is-a-facebook-business-account/" title="disadvantage of business account in facebook">disadvantage of business account in facebook</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-marketing/social-media-marketing-yorgo-nestoridis-marketing/what-is-a-facebook-business-account/" title="facebook managed advertisers who have a dedicated facebook representative">facebook managed advertisers who have a dedicated facebook representative</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-marketing/social-media-marketing-yorgo-nestoridis-marketing/what-is-a-facebook-business-account/" title="what can buisness accounts do on facebook">what can buisness accounts do on facebook</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-marketing/social-media-marketing-yorgo-nestoridis-marketing/what-is-a-facebook-business-account/" title="what is a business account on facebook">what is a business account on facebook</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-marketing/social-media-marketing-yorgo-nestoridis-marketing/what-is-a-facebook-business-account/" title="what is a facebook business account">what is a facebook business account</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/social-media/twitter/facebook-and-home-business/' rel='bookmark' title='Facebook and Home Business'>Facebook and Home Business</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>
<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/ycademy/best-facebook-pages-2/' rel='bookmark' title='Best Facebook Pages'>Best Facebook Pages</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-publishing-1/facebook-marketing-2/' rel='bookmark' title='Facebook Marketing'>Facebook Marketing</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-marketing/social-media-marketing-yorgo-nestoridis-marketing/what-is-a-facebook-business-account/feed/</wfw:commentRss>
		<slash:comments>0</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>XO Photo Press WordPress Theme</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/#comments</comments>
		<pubDate>Mon, 15 Aug 2011 09:20:13 +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[Semiomantics]]></category>
		<category><![CDATA[Semiomantics Photo Gallery]]></category>
		<category><![CDATA[Semiomantics XO]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress Development]]></category>
		<category><![CDATA[WP Best]]></category>
		<category><![CDATA[WP Best Design]]></category>
		<category><![CDATA[WP Best Gallery]]></category>
		<category><![CDATA[WP Best Photo Theme]]></category>
		<category><![CDATA[XO PhotoPress]]></category>
		<category><![CDATA[YORGOO Press]]></category>
		<category><![CDATA[Best Photo Theme for WordPress]]></category>
		<category><![CDATA[Elegant Web DesignWeb Design]]></category>
		<category><![CDATA[Photo Theme for WordPress]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=21832</guid>
		<description><![CDATA[XO PhotoPress is a custom built WP theme based on the XO Framework from Semiomantics. It displays as well Photo Albums and Galleries as well as an integrated Blog; it also can serve as an image Aggregator displaying media in most any format and layout. The Theme is designed for Professional and non-professional use and can easily be used by individuals without advanced knowledge.
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-development/semiomantics/best-consultant-theme-for-wordpress/' rel='bookmark' title='Best Consultant Theme for WordPress'>Best Consultant Theme for WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/new-xo53-theme-for-wordpress/' rel='bookmark' title='New XO53 Theme for WordPress'>New XO53 Theme for WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/photo-gallery-by-semiomantics/' rel='bookmark' title='Photo Gallery by Semiomantics'>Photo Gallery by Semiomantics</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="Semiomantics_XO_PhotoPress"><h2>Semiomantics XO PhotoPress</h2></span>
<p>This website is dedicated to the beauty and functionality of publishing Photos with WordPress. Photo Press is the Photo Website of YORGOO Press; it demonstrates various layouts and ways to present photos in a user-friendly, attractive and useful way. The site displays perfectly on mobile devices as well.</p>
<div id="attachment_346" class="wp-caption alignnone" style="width: 470px"><a href="http://photo.yorgoopress.com/" rel="me" target="_blank"><img class="size-medium wp-image-346  " title="photopress-home" src="http://photo.yorgoopress.com/wp-content/uploads/2011/08/photopress-home-460x428.jpg" alt="XO Photo Theme For WordPress by Yorgo Nestoridis" width="460" height="428" /></a><p class="wp-caption-text">PhotoPress for WP — Home</p></div>
<div id="attachment_345" class="wp-caption alignnone" style="width: 470px"><a href="http://photo.yorgoopress.com/gallery/" target="_blank"><img class="size-medium wp-image-345 " title="photopress-gallery-navigator" src="http://photo.yorgoopress.com/wp-content/uploads/2011/08/photopress-gallery-navigator-460x428.jpg" alt="XO Photo Theme For WordPress by Yorgo Nestoridis" width="460" height="428" /></a><p class="wp-caption-text">XO PhotoPress — Gallery Navigator</p></div>
<div id="attachment_352" class="wp-caption alignnone" style="width: 470px"><a href="http://photo.yorgoopress.com/wp-content/uploads/2011/08/photopress-small-gallery.jpg" target="_blank"><img class="size-medium wp-image-352 " title="photopress-small-gallery" src="http://photo.yorgoopress.com/wp-content/uploads/2011/08/photopress-small-gallery-460x428.jpg" alt="XO Photo Theme For WordPress by Yorgo Nestoridis" width="460" height="428" /></a><p class="wp-caption-text">XO PhotoPress — Small Gallery Slider</p></div>
<div id="attachment_342" class="wp-caption alignnone" style="width: 470px"><a href="http://photo.yorgoopress.com/people/" target="_blank"><img class="size-medium wp-image-342 " title="photopress-big-gallery" src="http://photo.yorgoopress.com/wp-content/uploads/2011/08/photopress-big-gallery-460x428.jpg" alt="XO Photo Theme For WordPress" width="460" height="428" /></a><p class="wp-caption-text">XO PhotoPress for WordPress — Large Gallery Slider</p></div>
<div id="attachment_343" class="wp-caption alignnone" style="width: 470px"><a href="http://photo.yorgoopress.com/blog/" target="_blank"><img class="size-medium wp-image-343  " title="photopress-blog" src="http://photo.yorgoopress.com/wp-content/uploads/2011/08/photopress-blog-460x428.jpg" alt="XO Photo Theme For WordPress by Yorgo Nestoridis" width="460" height="428" /></a><p class="wp-caption-text">XO PhotoPress — Blog</p></div>
<div id="attachment_344" class="wp-caption alignnone" style="width: 470px"><a href="http://photo.yorgoopress.com/contact/" target="_blank"><img class="size-medium wp-image-344 " title="photopress-contact" src="http://photo.yorgoopress.com/wp-content/uploads/2011/08/photopress-contact-460x428.jpg" alt="XO Photo Theme For WordPress by Yorgo Nestoridis" width="460" height="428" /></a><p class="wp-caption-text">XO PhotoPress — Contact</p></div>
<span id="Semiomantics_XO_for_WordPress"><h3>Semiomantics XO for WordPress</h3></span>
<p>No need to say much about XO for WordPress, its extraordinary performance has been proven times and again. The present site shows the flexibility of XO allowing professional designers to apply the most exciting designs to a high performance script without impacting negatively on the overall performance.</p>
<span id="XO_PhotoPress_a_high_profile_WordPress_Theme"><h3>XO PhotoPress a high profile WordPress Theme</h3></span>
<p>XO PhotoPress is a custom built WP theme based on the XO Framework from Semiomantics. It displays as well Photo Albums and Galleries as well as an integrated Blog; it also can serve as an image Aggregator displaying media in most any format and layout. The Theme is designed for Professional and non-professional use and can easily be used by individuals without advanced knowledge.</p>
<p>More to follow.</p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/" title="PhotoPress - Gallery">PhotoPress — Gallery</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/" title="template wordpress black rollover">template wordpress black rollover</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/" title="photopress wordpress theme">photopress wordpress theme</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/" title="photopress theme">photopress theme</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/" title="xo photo album">xo photo album</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/" title="wordpress slide gallery">wordpress slide gallery</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/" title="image gallery slider">image gallery slider</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/" title="black and white photoblog template - blogger">black and white photoblog template — blogger</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/" title="best wordpress black theme for bloggers">best wordpress black theme for bloggers</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/xo-photo-press-wordpress-theme/" title="wordpress photography theme">wordpress photography theme</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-development/semiomantics/best-consultant-theme-for-wordpress/' rel='bookmark' title='Best Consultant Theme for WordPress'>Best Consultant Theme for WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/new-xo53-theme-for-wordpress/' rel='bookmark' title='New XO53 Theme for WordPress'>New XO53 Theme for WordPress</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/semiomantics/photo-gallery-by-semiomantics/' rel='bookmark' title='Photo Gallery by Semiomantics'>Photo Gallery by Semiomantics</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/xo-photo-press-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Style the WordPress Menu</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/how-to-style-the-wordpress-menu/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/how-to-style-the-wordpress-menu/#comments</comments>
		<pubDate>Wed, 27 Jul 2011 17:31:30 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Best WordPress Photo Theme]]></category>
		<category><![CDATA[Custom Menu]]></category>
		<category><![CDATA[Menu with Images]]></category>
		<category><![CDATA[Rollover Effects]]></category>
		<category><![CDATA[WordPress Tutorial]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=21759</guid>
		<description><![CDATA[WP Custom Menu with Rollover Effect This tutorial is based on a recent Custom Photo Blog Theme Development for WordPress on the base of Semiomantics XO. The Solutions apply to most any clean WordPress theme whereas some of the style sheet syntax may vary from theme to theme. The WP Photo Theme — XO Photo The Goal of the exercise was to build a site which will display on mobile platforms as well without the use of WPTouch Pro for example and which offers the possibility to navigate without zooming on mobile phones. This gave us the opportunity to style the Main Navigation (horizontal menu on top of the site. As we are on a photo site we thought about using Menu tabs with images and rollover effects which can be achieved either with sprites or as individual images. We opted for a solution without sprites in this case considering that the difference will not be material on this site. The screenshot shows the rollover effect as it has been taken while the mouse was hovering over the CONTACT tab. The Menu Normal View and the Hover View show the same picture, whereas we put a transparent black layer (85% [...]
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/wordpress-menu-problem/' rel='bookmark' title='WordPress 3 Menu Problems'>WordPress 3 Menu Problems</a></li>
<li><a href='http://yorgonestoridis.com/web-design/simple-sprites-menu/' rel='bookmark' title='Simple Sprites Menu'>Simple Sprites Menu</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/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-development/wordpress-yorgo-nestoridis-development/how-to-add-the-date-to-the-wordpress-navigation/' rel='bookmark' title='How to add the Date to the WP Navigation'>How to add the Date to the WP Navigation</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<span id="WP_Custom_Menu_with_Rollover_Effect"><h2>WP Custom Menu with Rollover Effect</h2></span>
<p>This tutorial is based on a recent Custom Photo Blog Theme Development for WordPress on the base of Semiomantics XO. The Solutions apply to most any clean WordPress theme whereas some of the style sheet syntax may vary from theme to theme.</p>
<span id="The_WP_Photo_Theme_-_XO_Photo"><h3>The WP Photo Theme — XO Photo</h3></span>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2011/07/bw-1070x1047.jpg"><img class="size-large wp-image-21760 alignleft" style="margin-top: 10px; margin-bottom: 10px;" title="bw-1070x1047" src="http://yorgonestoridis.com/wp-content/uploads/2011/07/bw-1070x1047-460x450.jpg" alt="Best WordPress Black and White Photo Theme" width="460" height="450" /></a>The Goal of the exercise was to build a site which will display on mobile platforms as well without the use of WPTouch Pro for example and which offers the possibility to navigate without zooming on mobile phones.</p>
<p>This gave us the opportunity to style the Main Navigation (horizontal menu on top of the site. As we are on a photo site we thought about using Menu tabs with images and rollover effects which can be achieved either with sprites or as individual images.</p>
<p>We opted for a solution without sprites in this case considering that the difference will not be material on this site.</p>
<p>The screenshot shows the rollover effect as it has been taken while the mouse was hovering over the CONTACT tab.</p>
<p>The Menu Normal View and the Hover View show the same picture, whereas we put a transparent black layer (85% alpha) over the image for the Normal View. Also the font changes from white to blue.</p>
<p>On other sites we used black and white images which evolve to color or simply two entirely different pictures or text labels.</p>
<p>The question we will answer here is:</p>
<span id="HOW_DID_WE_DO_THIS"><h3>HOW DID WE DO THIS?</h3></span>
<p>First of all we create a menu from the WordPress dashboard under Appearance –&gt;Menu.</p>
<p>We call this main navigation ‘Main’. Now, and this is important, open the <strong>Screen Options</strong> on top right of the screen and tick all options, namely the <strong>Advanced Menu Properties</strong>.</p>
<div id="attachment_21762" class="wp-caption aligncenter" style="width: 470px"><a href="http://yorgonestoridis.com/wp-content/uploads/2011/07/bw-photorss-menu-conf.jpg"><img class="size-large wp-image-21762 " title="bw-photorss-menu-conf" src="http://yorgonestoridis.com/wp-content/uploads/2011/07/bw-photorss-menu-conf-460x215.jpg" alt="Advanced WordPress Menu Configuration" width="460" height="215" /></a><p class="wp-caption-text">Click to see large version.</p></div>
<span id="Advanced_Menu_Properties"><h3>Advanced Menu Properties</h3></span>
<p>These allow you to configure your menu items further, for example you may open the link in a new tab or window, you may define the link relation, add a description and important for us: you may define CSS Classes!</p>
<p>These classes allow us to style each list item in the menu individually by defining the corresponding styles in the custom syle sheet.</p>
<p>As you can see from the above screen-shot, we created a menu tab for FREE B&amp;W PHOTO FEEDS. We expand the tab in the back-office to see all properties and we create a CSS Class which we call “navfeed” (You just type in the name of the class, not the “.” (dot) which you will use in the CSS Style-sheet only.).</p>
<p>Repeat this procedure for  all menu items creating for each a CSS class (or multiples).</p>
<p>If all tabs will be styled in a uniform way, you may use the same class for all; it is however likely that you wish to create individual styles, namely if you use different images and width of the tabs.</p>
<span id="Style_your_menu_from_the_XO_Design_Tab"><h4>Style your menu from the XO Design Tab</h4></span>
<p>Now we just style the menu from the XO design tab as much as possible: fonts, font color and size and hovers if you wish. Our example shows that we have spread the menu over the full width of the page simply by adapting the fonts and font sizes, right from the XO Design panel.</p>
<span id="Take_a_Screenshot"><h3>Take a Screenshot</h3></span>
<p>Once done, take a screenshot of the menu and load it to Photoshop or any other image editor where you dispose of rulers to measure the width of each tab.</p>
<p>In our example, we are using 4 tabs with different width, the page width being 980 pixels.</p>
<p>The tabs have the following width:</p>
<ol>
<li>navhome:       157 px</li>
<li>navfeed:          459 px</li>
<li>navcontact:    280 px</li>
<li>navy:                 84 px</li>
</ol>
<p>Total, 980 pixels.</p>
<p>We wish to separate the tabs leaving a space of 1 pixel between them; we therefore decrease the with of 3 tabs by 1 px each to create the space for the spaces (this is getting smart, huh).</p>
<p>If you use Photoshop, you can just design your menu bar and slice it then accordingly, If you go one by one, you just create individual pictures of the same height and the width as defined above.</p>
<span id="Create_your_Pictures"><h3>Create your Pictures</h3></span>
<p>As we like to use the menu layout from XO, we will use the font definition from XO; the images we create will serve just as background pictures for each menu tab.</p>
<p>Our XO Settings for the menu are:</p>
<ul>
<li>Font: Quicksand</li>
<li>Font size: 32 px</li>
<li>Font Color: #FFFFFF (white)</li>
<li>Hover Color:  #0000FF (blue)</li>
<li>Background: #000000 (black)</li>
</ul>
<p>These settings result in a nice menu which we will expand with an image. The height of the menu is 80 px at present and we wish to expand it to 182 px by adding an image.</p>
<span id="The_Menu_Background_Images"><h3>The Menu Background Images</h3></span>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2011/07/navfeed.png"><img class="alignright size-full wp-image-21767" title="navfeed" src="http://yorgonestoridis.com/wp-content/uploads/2011/07/navfeed.png" alt="" width="458" height="182" /></a></p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2011/07/navfeed-o.png"><img class="alignright size-full wp-image-21768" title="navfeed-o" src="http://yorgonestoridis.com/wp-content/uploads/2011/07/navfeed-o.png" alt="" width="458" height="182" /></a><a href="http://yorgonestoridis.com/wp-content/uploads/2011/07/navcontact.png"><img class="alignright size-full wp-image-21765" title="navcontact" src="http://yorgonestoridis.com/wp-content/uploads/2011/07/navcontact.png" alt="" width="279" height="182" /></a><a href="http://yorgonestoridis.com/wp-content/uploads/2011/07/navcontact-o.png"><img class="alignright size-full wp-image-21766" title="navcontact-o" src="http://yorgonestoridis.com/wp-content/uploads/2011/07/navcontact-o.png" alt="" width="279" height="182" /></a></p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2011/07/navy.png"><img class="alignright size-full wp-image-21771" title="navy" src="http://yorgonestoridis.com/wp-content/uploads/2011/07/navy.png" alt="" width="83" height="182" /></a></p>
<p><a href="http://yorgonestoridis.com/wp-content/uploads/2011/07/navy-o.png"><img class="alignright size-full wp-image-21772" title="navy-o" src="http://yorgonestoridis.com/wp-content/uploads/2011/07/navy-o.png" alt="" width="83" height="182" /></a><a href="http://yorgonestoridis.com/wp-content/uploads/2011/07/navhome.png"><img class="alignright size-full wp-image-21769" title="navhome" src="http://yorgonestoridis.com/wp-content/uploads/2011/07/navhome.png" alt="" width="156" height="182" /></a><a href="http://yorgonestoridis.com/wp-content/uploads/2011/07/navhome-o.png"><img class="alignright size-full wp-image-21770" title="navhome-o" src="http://yorgonestoridis.com/wp-content/uploads/2011/07/navhome-o.png" alt="" width="156" height="182" /></a><br />
There you go! Now let’s fit everything together!</p>
<span id="Edit_your_Style-sheet"><h3>Edit your Style-sheet</h3></span>
<p>Finally we open our CSS Style-sheet and define the newly created classes.</p>
<p>As you see above, our classes are:</p>
<p>navhome, navfeed, navcontact and navy.</p>
<p>The corresponding classes in the Style-sheet will be:</p>
<p>.navhome</p>
<p>.navcontact .….   a dot in front of the label defines a “class” in the CSS Style-sheet.</p>
<p>Also, as these tabs contain hyperlinks, we will create the classes</p>
<p>.navhome a</p>
<p>.navcontact a .…  and so on.</p>
<p>This way we will then be able to create the hover pseudo classes:</p>
<p>.navhome a:hover .… and so on.</p>
<span id="CSS_Syntax"><h3>CSS Syntax</h3></span>
<p>Now we just type into our style-sheet whatever result we want to achieve, in our case this looks as follows for the HOME tab (the others are similar, except the width and image reference).</p>
<pre class="brush: php; title: ; notranslate">

.navhome, .navhome a {background: url('http://bw.photorss.com/wp-content/uploads/2011/07/navhome-o.png') no-repeat !important;height:130px !important;}
.navhome a:hover {background: url('http://bw.photorss.com/wp-content/uploads/2011/07/navhome.png') no-repeat !important;}

.navfeed, .navfeed a {background: url('http://bw.photorss.com/wp-content/uploads/2011/07/navfeed-o.png') no-repeat !important;height:130px !important;}
.navfeed a:hover {background: url('http://bw.photorss.com/wp-content/uploads/2011/07/navfeed.png') no-repeat !important;}
</pre>
<p> </p>
<p>To this we add the little 1 px space:</p>
<pre class="brush: php; title: ; notranslate">

.navfeed  {margin-left:1px ;}
</pre>
<p> </p>
<p>That’s it!</p>
<p>Hope you enjoy and let me know about your results by commenting here below.</p>
<p> </p>
<p> </p>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/how-to-style-the-wordpress-menu/" title="wordpress menu style">wordpress menu style</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/how-to-style-the-wordpress-menu/" title="how to style wordpress menu">how to style wordpress menu</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/how-to-style-the-wordpress-menu/" title="style wordpress menu">style wordpress menu</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/how-to-style-the-wordpress-menu/" title="how to make money">how to make money</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/how-to-style-the-wordpress-menu/" title="wordpress menu styles">wordpress menu styles</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/how-to-style-the-wordpress-menu/" title="How to style WordPress Menus">How to style WordPress Menus</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/how-to-style-the-wordpress-menu/" title="wordpress menu pic">wordpress menu pic</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/how-to-style-the-wordpress-menu/" title="wordpress photo menu">wordpress photo menu</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/how-to-style-the-wordpress-menu/" title="HOWO TO ADD MENU WITH WORDPRESS AND STYLES">HOWO TO ADD MENU WITH WORDPRESS AND STYLES</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/how-to-style-the-wordpress-menu/" title="wordpress advanced menu properties">wordpress advanced menu properties</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/wordpress-menu-problem/' rel='bookmark' title='WordPress 3 Menu Problems'>WordPress 3 Menu Problems</a></li>
<li><a href='http://yorgonestoridis.com/web-design/simple-sprites-menu/' rel='bookmark' title='Simple Sprites Menu'>Simple Sprites Menu</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/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-development/wordpress-yorgo-nestoridis-development/how-to-add-the-date-to-the-wordpress-navigation/' rel='bookmark' title='How to add the Date to the WP Navigation'>How to add the Date to the WP Navigation</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-development/wordpress-yorgo-nestoridis-development/how-to-style-the-wordpress-menu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Listen UP London</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-media/listen-up-london/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-media/listen-up-london/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 14:26:02 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Nestoridis]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[YORGOO]]></category>
		<category><![CDATA[&]]></category>
		<category><![CDATA[and]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Yorgo]]></category>
		<category><![CDATA[Yorgo Information]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>
		<category><![CDATA[Yorgo news]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=21329</guid>
		<description><![CDATA[Copyright © 2011 Yorgo Nestoridis. Visit the original article at http://yorgonestoridis.com/yorgo-nestoridis-development/listen-up-london/listen-up-london/.Listen Up London Listen Up London is an amazing young brand for media production. Christian George’s talent is obvious, reason why people like Global Sports US entrust Listen Up London with media production. Recently I had the opportunity to provide Listen Up London with some animated Logo footage which is added to clips shut and edited by Christian. Looking at Listen Up London’s Clips and Photographic work at You Tube and Tumblr, I though it was worth the while promoting my friend and his business, the more that he is living a passion and a dream he is realizing at the sacrifice of many distractions. In fact Christian has bought appropriate equipment based on a Canon 500D to shoot high quality clips which correspond to the standards customers require these days. The features picture here is not by Christian, but I just liked this snapshot taken at the Global US Store in London. I pinched it from Christian’s Tumblr and did some post editing as you can see. Working for Christian was a pleasure, refreshing, quick and direct: our communication was about entirely mobile based and to make things easier, I [...]


Related posts:<ol><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/nike-london/" rel="bookmark" title="Permanent Link: Nike London">Nike London</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/nike-london-on-google/" rel="bookmark" title="Permanent Link: Nike London on the Fly">Nike London on the Fly</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/business-market-watch-london-google/" rel="bookmark" title="Permanent Link: Business Market Watch London Evolution">Business Market Watch London Evolution</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/where-to-buy-nike-kicks-in-london-at-global-sports/" rel="bookmark" title="Permanent Link: Buy Nike Kicks in London at Global Sports">Buy Nike Kicks in London at Global Sports</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/global-sports-us/mitchell-ness-snapback-caps-in-stock/" rel="bookmark" title="Permanent Link: Mitchell &#38; Ness Snapback Caps in Stock">Mitchell &#038; Ness Snapback Caps in Stock</a></li>
</ol>
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/nike-kicks-on-google-by-semiomantics/' rel='bookmark' title='Nike Kicks on Google by Semiomantics'>Nike Kicks on Google by Semiomantics</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-make-money-with-images-2/' rel='bookmark' title='How to Make Money with Images'>How to Make Money with Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/global-sports-news/' rel='bookmark' title='Global Sports News'>Global Sports News</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/publishing-and-editing-images/' rel='bookmark' title='Publishing and Editing Images'>Publishing and Editing Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/protected-global-sports-update/' rel='bookmark' title='Protected: Global Sports Update'>Protected: Global Sports Update</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Copyright © 2011 <a href="http://yorgonestoridis.com">Yorgo Nestoridis</a>. Visit the original article at <a href="http://yorgonestoridis.com/yorgo-nestoridis-development/listen-up-london/listen-up-london/">http://yorgonestoridis.com/yorgo-nestoridis-development/listen-up-london/listen-up-london/</a>.<br /><span id="Listen_Up_London"><br />
<span id="Listen_Up_London"><h2>Listen Up London</h2></span>
<p></span></p>
<p><a title="Listen Up London Media Production" href="http://listenuplondon.com" >Listen Up London </a>is an amazing young brand for media production. Christian George’s talent is obvious, reason why people like Global Sports US entrust Listen Up London with media production. Recently I had the opportunity to provide Listen Up London with some animated Logo footage which is added to clips shut and edited by Christian.</p>
<p><img class="alignnone size-large wp-image-21330" title="christian-george-4" src="http://yorgonestoridis.com/wp-content/uploads/2011/06/christian-george-4-460x331.jpg" alt="Listen Up London" width="460" height="331" /></p>
<p>Looking at Listen Up London’s Clips and Photographic work at You Tube and Tumblr, I though it was worth the while promoting my friend and his business, the more that he is living a passion and a dream he is realizing at the sacrifice of many distractions.</p>
<p>In fact Christian has bought appropriate equipment based on a Canon 500D to shoot high quality clips which correspond to the standards customers require these days.</p>
<p><a href="http://listenuplondon.com"><img class="alignnone size-large wp-image-21331" title="christian-george-3" src="http://yorgonestoridis.com/wp-content/uploads/2011/06/christian-george-3-460x331.jpg" alt="Listen Up London" width="460" height="331" /></a></p>
<p>The features picture here is not by Christian, but I just liked this snapshot taken at the Global US Store in London. I pinched it from Christian’s Tumblr and did some post editing as you can see.</p>
<p>Working for Christian was a pleasure, refreshing, quick and direct: our communication was about entirely mobile based and to make things easier, I just registered the domain ListenUpLondon.com to load the previews of our project.</p>
<p><img class="alignnone size-large wp-image-21332" title="christian-george" src="http://yorgonestoridis.com/wp-content/uploads/2011/06/christian-george-460x331.jpg" alt="Listen Up London" width="460" height="331" /></p>
<p>Christian does not yet have his own domain, host and website, but it’s on hist list of priorities. In the mean time I use the domain to build a promotional website for him under the umbrella of semiomantics developments. The goal is to create an XO based website which can be inserted into facebook. The actual site is up and running. The facebook implementation is under development.</p>
<p>In any case, I am sure, in the near future, Listen Up London will be seen all over the place and from Semiomantics we wish Christian all the best with his passion and great work!</p>
<p><a href="http://listenuplondon.com"><img class="alignnone size-large wp-image-21333" title="christian-george-2" src="http://yorgonestoridis.com/wp-content/uploads/2011/06/christian-george-2-460x331.jpg" alt="Listen Up London" width="460" height="331" /></a></p>
<p><span id="Incoming_search_terms:"><br />
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span>
<p></span>
<ul>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/listen-up-london/listen-up-london/" title="listen up london">listen up london</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
<p>Related posts:
<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/nike-london/' rel='bookmark' title='Permanent Link: Nike London'>Nike London</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/nike-london-on-google/' rel='bookmark' title='Permanent Link: Nike London on the Fly'>Nike London on the Fly</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/business-market-watch-london-google/' rel='bookmark' title='Permanent Link: Business Market Watch London Evolution'>Business Market Watch London Evolution</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/where-to-buy-nike-kicks-in-london-at-global-sports/' rel='bookmark' title='Permanent Link: Buy Nike Kicks in London at Global Sports'>Buy Nike Kicks in London at Global Sports</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/global-sports-us/mitchell-ness-snapback-caps-in-stock/' rel='bookmark' title='Permanent Link: Mitchell &amp; Ness Snapback Caps in Stock'>Mitchell &amp; Ness Snapback Caps in Stock</a></li>
</ol>
<span id="Incoming_search_terms:_1"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/listen-up-london/" title="listen up london">listen up london</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/listen-up-london/" title="christian george">christian george</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/listen-up-london/" title="christian george listen up london">christian george listen up london</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/listen-up-london/" title="where can i get snapback caps in south africa">where can i get snapback caps in south africa</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/listen-up-london/" title="buy snapback london">buy snapback london</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/listen-up-london/" title="snapback buy at london">snapback buy at london</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/listen-up-london/" title="Snap Back Website">Snap Back Website</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/listen-up-london/" title="mitchel &amp; ness 2011 snapback">mitchel &amp; ness 2011 snapback</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/listen-up-london/" title="listen up london global">listen up london global</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/listen-up-london/" title="listen up london christian george">listen up london christian george</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/nike-kicks-on-google-by-semiomantics/' rel='bookmark' title='Nike Kicks on Google by Semiomantics'>Nike Kicks on Google by Semiomantics</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-make-money-with-images-2/' rel='bookmark' title='How to Make Money with Images'>How to Make Money with Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/global-sports-news/' rel='bookmark' title='Global Sports News'>Global Sports News</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/publishing-and-editing-images/' rel='bookmark' title='Publishing and Editing Images'>Publishing and Editing Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/protected-global-sports-update/' rel='bookmark' title='Protected: Global Sports Update'>Protected: Global Sports Update</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-media/listen-up-london/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Protect your Website Content 2</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-media/protect-your-website-content-2/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-media/protect-your-website-content-2/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 00:10:10 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Nestoridis]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[YORGOO]]></category>
		<category><![CDATA[&]]></category>
		<category><![CDATA[and]]></category>
		<category><![CDATA[Notice]]></category>
		<category><![CDATA[Off-site]]></category>
		<category><![CDATA[On-site]]></category>
		<category><![CDATA[Protect]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Yorgo]]></category>
		<category><![CDATA[Yorgo Information]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>
		<category><![CDATA[Yorgo news]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=2200</guid>
		<description><![CDATA[Copyright © 2011 Yorgo Nestoridis. Visit the original article at http://yorgonestoridis.com/yorgo-nestoridis/protect-your-website-content-102/.Protect Content with Copyrights My previous post included some interesting features in terms of Copyright mentions. There are on-site and off-site solutions which you may have noticed. The post discusses the various possibilities adding copyright notices, not their efficiency against content scrapers. Copyright on-site On my site I publish a Copyright mention in the footer: These Copyright notices are standard and most WordPress blogs add them automatically. Such notices can be more or less sophisticated; automated vCard notices are possible and exist in may themes by default. Copyright using vCard For the purpose of this example I have used the vCard entry at the bottom of the post, just above the comment area as visible here: Copyright using Author Box The author box is part of the post content and therefore an on-site as well as off-site feature: The disadvantage of the html author box is that it messes up the clean code of the post. Such boxes should be edited in clean code and inserted accordingly. Copyright off-site As mentioned above, the Authors Box at the bottom of the post is part of the post and therefore transferable by [...]


Related posts:<ol><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/protect-your-site-content-101/" rel="bookmark" title="Permanent Link: Protect your Website Content">Protect your Website Content</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/measures-to-protect-your-blog/" rel="bookmark" title="Permanent Link: Measures to protect your Blog">Measures to protect your Blog</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/cars-daily-chronicle-by-gene-line/" rel="bookmark" title="Permanent Link: Cars Daily Chronicle">Cars Daily Chronicle</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/publish-images-on-yorgoo-press/" rel="bookmark" title="Permanent Link: Rotating Headers and Banners on YORGOO Press">Rotating Headers and Banners on YORGOO Press</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/astroblogy-project-gemini/" rel="bookmark" title="Permanent Link: Astroblogy Project Gemini">Astroblogy Project Gemini</a></li>
</ol>
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/protect-your-site-content-101/' rel='bookmark' title='Protect your Website Content'>Protect your Website Content</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/protect-your-website-content-104/' rel='bookmark' title='Protect your Website Content 4'>Protect your Website Content 4</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/protected-global-sports-update/' rel='bookmark' title='Protected: Global Sports Update'>Protected: Global Sports Update</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-make-money-with-images-2/' rel='bookmark' title='How to Make Money with Images'>How to Make Money with Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/publishing-and-editing-images-2/' rel='bookmark' title='Publishing and Editing Images 2'>Publishing and Editing Images 2</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Copyright © 2011 <a href="http://yorgonestoridis.com">Yorgo Nestoridis</a>. Visit the original article at <a href="http://yorgonestoridis.com/yorgo-nestoridis/protect-your-website-content-102/">http://yorgonestoridis.com/yorgo-nestoridis/protect-your-website-content-102/</a>.<br /><span id="Protect_Content_with_Copyrights"><br />
<span id="Protect_Content_with_Copyrights"><h2>Protect Content with Copyrights</h2></span>
<p></span></p>
<p>My previous post included some interesting features in terms of Copyright mentions. There are on-site and off-site solutions which you may have noticed. The post discusses the various possibilities adding copyright notices, not their efficiency against content scrapers.</p>
<p><span id="Copyright_on-site"><br />
<span id="Copyright_on-site"><h2>Copyright on-site</h2></span>
<p></span></p>
<p>On my site I publish a Copyright mention in the footer:</p>
<p>These Copyright notices are standard and most WordPress blogs add them automatically. Such notices can be more or less sophisticated; automated vCard notices are possible and exist in may themes by default.</p>
<div id="attachment_2201" class="wp-caption alignnone" style="width: 497px"><a rel="attachment wp-att-2201" href="http://yorgonestoridis.com/wp-content/uploads/2009/05/protect-web-content-1.jpg"><img class="size-full wp-image-2201" title="protect-web-content-1" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/protect-web-content-1.jpg" alt="Copyright Yorgo Nestoridis" width="487" height="80" /></a>
<p class="wp-caption-text">Copyright Yorgo Nestoridis</p>
</div>
<p><span id="Copyright_using_vCard"><br />
<span id="Copyright_using_vCard"><h3>Copyright using vCard</h3></span>
<p></span></p>
<p>For the purpose of this example I have used the vCard entry at the bottom of the post, just above the comment area as visible here:</p>
<div id="attachment_2206" class="wp-caption alignnone" style="width: 504px"><a rel="attachment wp-att-2206" href="http://yorgonestoridis.com/wp-content/uploads/2009/05/protect-content-2.jpg"><img class="size-full wp-image-2206" title="protect-content-2" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/protect-content-2.jpg" alt="Copyright Yorgo Nestoridis vCard" width="494" height="683" /></a>
<p class="wp-caption-text">Copyright Yorgo Nestoridis vCard</p>
</div>
<p><span id="Copyright_using_Author_Box"><br />
<span id="Copyright_using_Author_Box"><h3>Copyright using Author Box</h3></span>
<p></span></p>
<p>The author box is part of the post content and therefore an on-site as well as off-site feature:</p>
<div id="attachment_2209" class="wp-caption alignnone" style="width: 533px"><a rel="attachment wp-att-2209" href="http://yorgonestoridis.com/wp-content/uploads/2009/05/copyright-author.jpg"><img class="size-full wp-image-2209" title="copyright-author" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/copyright-author.jpg" alt="Copyright Author" width="523" height="136" /></a>
<p class="wp-caption-text">Copyright Author</p>
</div>
<p>The disadvantage of the html author box is that it messes up the clean code of the post. Such boxes should be edited in clean code and inserted accordingly.</p>
<p><span id="Copyright_off-site"><br />
<span id="Copyright_off-site"><h2>Copyright off-site</h2></span>
<p></span></p>
<p>As mentioned above, the <strong>Authors Box</strong> at the bottom of the post is part of the post and therefore transferable by Feed (RSS, Atom). Content scrapers usually scrap by using feeds and by importing content to their own web sites.</p>
<p>Author Boxes with clean content are interesting and accepted also by most directories, for as long as they contain only one link.</p>
<p><span id="Copyright_added_to_the_Feed"><br />
<span id="Copyright_added_to_the_Feed"><h3>Copyright added to the Feed</h3></span>
<p></span></p>
<p>An interesting idea is to add copy right notices to the out-put feed. The principle is: you add automatically a copyright notice to every post in your feeds, without having these notices on display on your own website.</p>
<p>The previous post has been syndicated into <a title="Copyright Yorgo nestoridis on YORGOO Publishing" href="http://yorgoopublishing.com/home-business/protect-your-web-site-content/" >YORGOO Publishing</a>; here is how the post was automatically printed:</p>
<p><span id="Copyright_on_top_of_the_post:"><br />
<span id="Copyright_on_top_of_the_post:"><h4><strong>Copyright on top of the post:</strong></h4></span>
<p></span></p>
<p>The original post on Yorgo Nestoridis<strong> shows no copyright on top:</strong></p>
<div id="attachment_2220" class="wp-caption alignnone" style="width: 509px"><a rel="attachment wp-att-2220" href="http://yorgonestoridis.com/wp-content/uploads/2009/05/copyright-2.jpg"><img class="size-full wp-image-2220" title="copyright-2" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/copyright-2.jpg" alt="Yorgo Nestoridis Blog" width="499" height="507" /></a>
<p class="wp-caption-text">Yorgo Nestoridis Blog</p>
</div>
<p>The Copyright notice added to the feed shows however automatically on every site syndicating my content as follows:</p>
<div id="attachment_2221" class="wp-caption alignnone" style="width: 509px"><a rel="attachment wp-att-2221" href="http://yorgonestoridis.com/wp-content/uploads/2009/05/copyright-1.jpg"><img class="size-full wp-image-2221" title="copyright-1" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/copyright-1.jpg" alt="Copyright Yorgo Nestoridis on YORGOO Publishing" width="499" height="363" /></a>
<p class="wp-caption-text">Copyright Yorgo Nestoridis on YORGOO Publishing</p>
</div>
<p>The same is true for Ycademy which syndicated from YORGOO Publishing:</p>
<div id="attachment_2222" class="wp-caption alignnone" style="width: 475px"><a rel="attachment wp-att-2222" href="http://yorgonestoridis.com/wp-content/uploads/2009/05/copyright-3.jpg"><img class="size-full wp-image-2222" title="copyright-3" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/copyright-3.jpg" alt="Copyright Yorgo Nestoridis on Ycademy" width="465" height="448" /></a>
<p class="wp-caption-text">Copyright Yorgo Nestoridis on Ycademy</p>
</div>
<p>The above screenshots represent post pages where the Copyright notice on top of the post bears active hyperlinks. In case the default excerpt is printed, as on the home page of <a title="YORGOO Press" href="http://yorgoopress.com" >YORGOO Press</a> blogs or on <a title="Ycademy" href="http://ycademy.com" >Ycademy</a>, then the same notice is served, however without active links.</p>
<div id="attachment_2230" class="wp-caption alignnone" style="width: 292px"><a rel="attachment wp-att-2230" href="http://yorgonestoridis.com/wp-content/uploads/2009/05/copyright-41.jpg"><img class="size-full wp-image-2230" title="copyright-41" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/copyright-41.jpg" alt="Copyright Yorgo Nestoridis on Ycademy" width="282" height="360" /></a>
<p class="wp-caption-text">Copyright Yorgo Nestoridis on Ycademy</p>
</div>
<p><span id="Copyright_at_the_bottom_of_the_post:"><br />
<span id="Copyright_at_the_bottom_of_the_post:"><h4>Copyright at the bottom of the post:</h4></span>
<p></span></p>
<p>The Authors Box has been imported while the vCard has disappeared as we did not embed it into the code (loop) but served it using an in-line widget<strong><strong>. </strong></strong>To pass on the vCard, the corresponding code can be embedded into the WP code. The vCard delivers clean code and could be a better solution then the HTML Author’s Box.</p>
<div id="attachment_2235" class="wp-caption alignnone" style="width: 550px"><a rel="attachment wp-att-2235" href="http://yorgonestoridis.com/wp-content/uploads/2009/05/author-box.jpg"><img class="size-full wp-image-2235" title="author-box" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/author-box.jpg" alt="Author Box on YORGOO Publishing" width="540" height="430" /></a>
<p class="wp-caption-text">Author Box on YORGOO Publishing</p>
</div>
<p><span id="My_preference"><br />
<span id="My_preference"><h2>My preference</h2></span>
<p></span></p>
<p>The most visible notice is delivered on top of the post, however in a more elegant way than the shrewd wording chosed for the purpose of this example.</p>
<p>A nice notice could be for example: “Published by Yorgo Nestoridis on YORGOO Press” including the corresponding links.</p>
<p>Related posts:
<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/protect-your-site-content-101/' rel='bookmark' title='Permanent Link: Protect your Website Content'>Protect your Website Content</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/measures-to-protect-your-blog/' rel='bookmark' title='Permanent Link: Measures to protect your Blog'>Measures to protect your Blog</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/cars-daily-chronicle-by-gene-line/' rel='bookmark' title='Permanent Link: Cars Daily Chronicle'>Cars Daily Chronicle</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/publish-images-on-yorgoo-press/' rel='bookmark' title='Permanent Link: Rotating Headers and Banners on YORGOO Press'>Rotating Headers and Banners on YORGOO Press</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/astroblogy-project-gemini/' rel='bookmark' title='Permanent Link: Astroblogy Project Gemini'>Astroblogy Project Gemini</a></li>
</ol>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/protect-your-website-content-2/" title="how to protect content of website">how to protect content of website</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/protect-your-website-content-2/" title="how to protect content on website">how to protect content on website</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/protect-your-website-content-2/" title="word press protect media content">word press protect media content</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/protect-your-site-content-101/' rel='bookmark' title='Protect your Website Content'>Protect your Website Content</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/protect-your-website-content-104/' rel='bookmark' title='Protect your Website Content 4'>Protect your Website Content 4</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/protected-global-sports-update/' rel='bookmark' title='Protected: Global Sports Update'>Protected: Global Sports Update</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-make-money-with-images-2/' rel='bookmark' title='How to Make Money with Images'>How to Make Money with Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/publishing-and-editing-images-2/' rel='bookmark' title='Publishing and Editing Images 2'>Publishing and Editing Images 2</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-media/protect-your-website-content-2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Ycademy Training Edit Images</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-media/ycademy-training-edit-images/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-media/ycademy-training-edit-images/#comments</comments>
		<pubDate>Thu, 09 Jun 2011 12:09:48 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Nestoridis]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[YORGOO]]></category>
		<category><![CDATA[&]]></category>
		<category><![CDATA[and]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[Images]]></category>
		<category><![CDATA[show]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Yorgo]]></category>
		<category><![CDATA[Yorgo Information]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>
		<category><![CDATA[Yorgo news]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=2183</guid>
		<description><![CDATA[Copyright © 2011 Yorgo Nestoridis. Visit the original article at http://yorgonestoridis.com/yorgo-nestoridis/ycademy-training-edit-images/.Ycademy Training Edit Images Editing and Publishing images for training purposes. Samples. [singlepic id=15 w=320 h=240 mode=web20 float=] [singlepic id=18 w=320 h=240 mode=watermark float=] [nggallery id=4] Related posts:Publishing and Editing Images 2 How to Make Money with Images Social Media Marketing by Ycademy How to Make Money with Images Managing Images on YORGOO Press


Related posts:<ol><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/publishing-and-editing-images-2/" rel="bookmark" title="Permanent Link: Publishing and Editing Images 2">Publishing and Editing Images 2</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/how-to-make-money-with-images/" rel="bookmark" title="Permanent Link: How to Make Money with Images">How to Make Money with Images</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/social-media-marketing-by-ycademy/" rel="bookmark" title="Permanent Link: Social Media Marketing by Ycademy">Social Media Marketing by Ycademy</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/how-to-make-money-with-images-101/" rel="bookmark" title="Permanent Link: How to Make Money with Images">How to Make Money with Images</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/managing-images-on-yorgoo-press/" rel="bookmark" title="Permanent Link: Managing Images on YORGOO Press">Managing Images on YORGOO Press</a></li>
</ol>
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/publishing-and-editing-images-2/' rel='bookmark' title='Publishing and Editing Images 2'>Publishing and Editing Images 2</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-make-money-with-images/' rel='bookmark' title='How to Make Money with Images'>How to Make Money with Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-make-money-with-images-2/' rel='bookmark' title='How to Make Money with Images'>How to Make Money with Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/publishing-and-editing-images/' rel='bookmark' title='Publishing and Editing Images'>Publishing and Editing Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/managing-images-on-yorgoo-press/' rel='bookmark' title='Managing Images on YORGOO Press'>Managing Images on YORGOO Press</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Copyright © 2011 <a href="http://yorgonestoridis.com">Yorgo Nestoridis</a>. Visit the original article at <a href="http://yorgonestoridis.com/yorgo-nestoridis/ycademy-training-edit-images/">http://yorgonestoridis.com/yorgo-nestoridis/ycademy-training-edit-images/</a>.<br /><span id="Ycademy_Training_Edit_Images"><br />
<span id="Ycademy_Training_Edit_Images"><h2>Ycademy Training Edit Images</h2></span>
<p></span></p>
<p>Editing and Publishing images for training purposes. Samples.</p>
<p>[singlepic id=15 w=320 h=240 mode=web20 float=]</p>
<p>[singlepic id=18 w=320 h=240 mode=watermark float=]</p>
<p>[nggallery id=4]</p>
<p><!-- Slide.com error: provide id, w, h --></p>
<p>Related posts:
<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/publishing-and-editing-images-2/' rel='bookmark' title='Permanent Link: Publishing and Editing Images 2'>Publishing and Editing Images 2</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/how-to-make-money-with-images/' rel='bookmark' title='Permanent Link: How to Make Money with Images'>How to Make Money with Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/social-media-marketing-by-ycademy/' rel='bookmark' title='Permanent Link: Social Media Marketing by Ycademy'>Social Media Marketing by Ycademy</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/how-to-make-money-with-images-101/' rel='bookmark' title='Permanent Link: How to Make Money with Images'>How to Make Money with Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/managing-images-on-yorgoo-press/' rel='bookmark' title='Permanent Link: Managing Images on YORGOO Press'>Managing Images on YORGOO Press</a></li>
</ol>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/ycademy-training-edit-images/" title="yorgo ycademy">yorgo ycademy</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/publishing-and-editing-images-2/' rel='bookmark' title='Publishing and Editing Images 2'>Publishing and Editing Images 2</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-make-money-with-images/' rel='bookmark' title='How to Make Money with Images'>How to Make Money with Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-make-money-with-images-2/' rel='bookmark' title='How to Make Money with Images'>How to Make Money with Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/publishing-and-editing-images/' rel='bookmark' title='Publishing and Editing Images'>Publishing and Editing Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/managing-images-on-yorgoo-press/' rel='bookmark' title='Managing Images on YORGOO Press'>Managing Images on YORGOO Press</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-media/ycademy-training-edit-images/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Publishing and Editing Images 2</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-media/publishing-and-editing-images-2/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-media/publishing-and-editing-images-2/#comments</comments>
		<pubDate>Thu, 09 Jun 2011 00:10:37 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Flickr]]></category>
		<category><![CDATA[Marketing]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Nestoridis]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[YORGOO]]></category>
		<category><![CDATA[&]]></category>
		<category><![CDATA[and]]></category>
		<category><![CDATA[CoolIris]]></category>
		<category><![CDATA[Galleries]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[Pictures]]></category>
		<category><![CDATA[show]]></category>
		<category><![CDATA[Slide]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Yorgo]]></category>
		<category><![CDATA[Yorgo Information]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>
		<category><![CDATA[Yorgo news]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=2129</guid>
		<description><![CDATA[Copyright © 2011 Yorgo Nestoridis. Visit the original article at http://yorgonestoridis.com/yorgo-nestoridis/publishing-and-editing-images-2/.Publishing and Editing Images 2: Slide shows and Galleries Editing slide shows is one thing, delivering them is another. There are a few factors which will impact on your visitors Surfing Experience. Slide shows: the technology you use on your site Slide shows: the technology your visitor uses Slide shows: the technology you use on your site Using a WordPress based website you have multiple options. You can just use galleries from the built in media module. Example 1: Images are loaded into the WP Media Folder using the upload tool associated with the post editor. To display the pictures as a slide show, you need some additional soft ware, plug-ins. Example 2: Images are loaded into a Image Management Module and rendered as an embedded slide show: The above depends mainly of the technology used on your website since most computers can render such slide shows and there is therefore no discrimination of users who are not equipped with software beyond default. Slide shows: the technology your visitor uses With the increasing popularity of Social Media, some interesting applications have been developed which allow Internet users to improve their [...]


Related posts:<ol><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/publishing-and-editing-images/" rel="bookmark" title="Permanent Link: Publishing and Editing Images">Publishing and Editing Images</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/social-media-marketing-news-102/" rel="bookmark" title="Permanent Link: Social Media Marketing Seminar">Social Media Marketing Seminar</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/how-to-make-money-with-images-101/" rel="bookmark" title="Permanent Link: How to Make Money with Images">How to Make Money with Images</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/the-purpose-and-future-of-yorgoo-media/" rel="bookmark" title="Permanent Link: The Purpose and Future of YORGOO Media">The Purpose and Future of YORGOO Media</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/interactive-video-blog/" rel="bookmark" title="Permanent Link: Interactive Video Blog">Interactive Video Blog</a></li>
</ol>
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/publishing-and-editing-images/' rel='bookmark' title='Publishing and Editing Images'>Publishing and Editing Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-make-money-with-images/' rel='bookmark' title='How to Make Money with Images'>How to Make Money with Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-make-money-with-images-2/' rel='bookmark' title='How to Make Money with Images'>How to Make Money with Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/managing-images-on-yorgoo-press/' rel='bookmark' title='Managing Images on YORGOO Press'>Managing Images on YORGOO Press</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/the-purpose-and-future-of-yorgoo-media/' rel='bookmark' title='The Purpose and Future of YORGOO Media'>The Purpose and Future of YORGOO Media</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Copyright © 2011 <a href="http://yorgonestoridis.com">Yorgo Nestoridis</a>. Visit the original article at <a href="http://yorgonestoridis.com/yorgo-nestoridis/publishing-and-editing-images-2/">http://yorgonestoridis.com/yorgo-nestoridis/publishing-and-editing-images-2/</a>.<br /><span id="Publishing_and_Editing_Images_2:_Slide_shows_and_Galleries"><br />
<span id="Publishing_and_Editing_Images_2:_Slide_shows_and_Galleries"><h2>Publishing and Editing Images 2: Slide shows and Galleries</h2></span>
<p></span></p>
<p>Editing slide shows is one thing, delivering them is another. There are a few factors which will impact on your visitors Surfing Experience.</p>
<p><strong>Slide shows: the technology you use on your site</strong></p>
<p><strong>Slide shows: the technology your visitor uses</strong></p>
<p><span id="Slide_shows:_the_technology_you_use_on_your_site"><br />
<span id="Slide_shows:_the_technology_you_use_on_your_site"><h3>Slide shows: the technology you use on your site</h3></span>
<p></span></p>
<p>Using a WordPress based website you have multiple options. You can just use galleries from the built in media module.</p>
<p>Example 1: Images are loaded into the WP Media Folder using the upload tool associated with the post editor.</p>
<p><a href='http://yorgonestoridis.com/yorgo-nestoridis/publishing-and-editing-images-2/attachment/biancagubalke1-2/' title='biancagubalke-hearing'><img width="120" height="80" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/biancagubalke1-120x80.jpg" class="attachment-thumbnail" alt="Bianca Gubalke Hearing" title="biancagubalke-hearing" /></a><br />
<a href='http://yorgonestoridis.com/yorgo-nestoridis/publishing-and-editing-images-2/attachment/biancagubalke-reflections/' title='biancagubalke-reflections'><img width="120" height="80" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/biancagubalke-reflections-120x80.jpg" class="attachment-thumbnail" alt="Bianca Gubalke Reflections" title="biancagubalke-reflections" /></a><br />
<a href='http://yorgonestoridis.com/yorgo-nestoridis/publishing-and-editing-images-2/attachment/cooliris-button1/' title='cooliris-button1'><img width="120" height="80" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/cooliris-button1-120x80.jpg" class="attachment-thumbnail" alt="Cool Iris" title="cooliris-button1" /></a></p>
<p>To display the pictures as a slide show, you need some additional soft ware, plug-ins.</p>
<p>Example 2: Images are loaded into a Image Management Module and rendered as an embedded slide show:</p>
<p><!-- Slide.com error: provide id, w, h --></p>
<p>The above depends mainly of the technology used on your website since most computers can render such slide shows and there is therefore no discrimination of users who are not equipped with software beyond default.</p>
<p><span id="Slide_shows:_the_technology_your_visitor_uses"><br />
<span id="Slide_shows:_the_technology_your_visitor_uses"><h3>Slide shows: the technology your visitor uses</h3></span>
<p></span></p>
<p>With the increasing popularity of Social Media, some interesting applications have been developed which allow Internet users to improve their surfing experience by installing additional soft on their computers. The success of such soft depends on the number of sites which add corresponding features to their development.</p>
<p>Here is an example and I would suggest you download the software on your Computer profit fully from the 3D effects. By the way: FaceBook, Flickr and YORGOO Media are equipped with these add-ons, to mention just a few.</p>
<p>[singlepic id=13 w=320 h=240 mode=watermark float=][singlepic id=11 w=320 h=240 mode=web20 float=]</p>
<p>Watch now: when you pass your mouse over a picture, you notice a button:</p>
<div id="attachment_2150" class="wp-caption alignnone" style="width: 476px"><a rel="attachment wp-att-2150" href="http://yorgonestoridis.com/wp-content/uploads/2009/05/cooliris-button1.jpg"><img class="size-full wp-image-2150" title="cooliris-button1" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/cooliris-button1.jpg" alt="Cool Iris" width="466" height="401" /></a>
<p class="wp-caption-text">Cool Iris</p>
</div>
<p>If you click on it, your local 3D image wall will render the images, try on one of the above pictures.</p>
<p>Download your CoolIris Browser and install it on your computer and then watch and be amazed about the new experience.</p>
<p>We can take this further and show a whole wall of our images on the website:</p>
<p><span id="How_about_showing_my_Flickr_Pics_on_a_CoolIris_wall"><br />
<span id="How_about_showing_my_Flickr_Pics_on_a_CoolIris_wall"><h3>How about showing my Flickr Pics on a CoolIris wall?</h3></span>
<p></span></p>
<p>It’s possible, watch out for the next post.</p>
<p>Related posts:
<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/publishing-and-editing-images/' rel='bookmark' title='Permanent Link: Publishing and Editing Images'>Publishing and Editing Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/social-media-marketing-news-102/' rel='bookmark' title='Permanent Link: Social Media Marketing Seminar'>Social Media Marketing Seminar</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/how-to-make-money-with-images-101/' rel='bookmark' title='Permanent Link: How to Make Money with Images'>How to Make Money with Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/the-purpose-and-future-of-yorgoo-media/' rel='bookmark' title='Permanent Link: The Purpose and Future of YORGOO Media'>The Purpose and Future of YORGOO Media</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/interactive-video-blog/' rel='bookmark' title='Permanent Link: Interactive Video Blog'>Interactive Video Blog</a></li>
</ol>
<p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/publishing-and-editing-images/' rel='bookmark' title='Publishing and Editing Images'>Publishing and Editing Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-make-money-with-images/' rel='bookmark' title='How to Make Money with Images'>How to Make Money with Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-make-money-with-images-2/' rel='bookmark' title='How to Make Money with Images'>How to Make Money with Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/managing-images-on-yorgoo-press/' rel='bookmark' title='Managing Images on YORGOO Press'>Managing Images on YORGOO Press</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/the-purpose-and-future-of-yorgoo-media/' rel='bookmark' title='The Purpose and Future of YORGOO Media'>The Purpose and Future of YORGOO Media</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-media/publishing-and-editing-images-2/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to add a Facebook iFrame Application to your Fans Page</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-add-a-facebook-iframe-application-to-your-fans-page/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-add-a-facebook-iframe-application-to-your-fans-page/#comments</comments>
		<pubDate>Wed, 08 Jun 2011 18:06:10 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Nestoridis]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[YORGOO]]></category>
		<category><![CDATA[&]]></category>
		<category><![CDATA[and]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Yorgo]]></category>
		<category><![CDATA[Yorgo Information]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>
		<category><![CDATA[Yorgo news]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=21308</guid>
		<description><![CDATA[Copyright © 2011 Yorgo Nestoridis. Visit the original article at http://yorgonestoridis.com/facebook-marketing/how-to-add-a-facebook-iframe-application-to-your-fans-page/.6 Steps to Add a Facebook iFrame Application to your Fans Page This Tutorial will show how to set up a Facebook iFrame Application in 6 Steps. Since Facebook changed once more the rules Fan Page content is to be added via iFrame Applications. There are some App providers out there who offer quick solutions namely for people who do not have own hosting; these external solutions have the disadvantage that you are not in full control of your frame and that you promote rather the App provider than yourself. For our customers we use a more professional approach. Here below you will find the basic 10 steps to create your own iFrame Application. What are Facebook iFrame Applications As of February 2011 facebook allows iFrames on Page Tabs as well as on Canvas Pages. The corresponding Applications don’t need to be activated (using the app submission procedure). In short an iFrame Application allows to load external content to your Fan or Business Page. The advantage of Facebook iFrame Applications As your content is hosted on your own host, you may edit in  standard HTML, CSS and JavaScript like on [...]


Related posts:<ol><li><a href="http://yorgonestoridis.com/facebook-marketing/best-rss-facebook-page/" rel="bookmark" title="Permanent Link: Best RSS Facebook Page">Best RSS Facebook Page</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/yorgo-design/facebook-drawing-board-live/" rel="bookmark" title="Permanent Link: Facebook Drawing Board Live">Facebook Drawing Board Live</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis-marketing/free-traffic-and-free-leads/yorgoo-on-facebook/" rel="bookmark" title="Permanent Link: YORGOO on Facebook">YORGOO on Facebook</a></li>
<li><a href="http://yorgonestoridis.com/media-marketing-publishing/facebook-ycademy/" rel="bookmark" title="Permanent Link: Facebook Online Seminar by Ycademy">Facebook Online Seminar by Ycademy</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/best-facebook-pages-2/" rel="bookmark" title="Permanent Link: Best Facebook Pages">Best Facebook Pages</a></li>
</ol>
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/the-purpose-and-future-of-yorgoo-media/' rel='bookmark' title='The Purpose and Future of YORGOO Media'>The Purpose and Future of YORGOO Media</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/buddypress-featured-on-yorgoo-blaster/' rel='bookmark' title='BuddyPress featured on YORGOO Blaster'>BuddyPress featured on YORGOO Blaster</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/managing-images-on-yorgoo-press/' rel='bookmark' title='Managing Images on YORGOO Press'>Managing Images on YORGOO Press</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/publishing-and-editing-images/' rel='bookmark' title='Publishing and Editing Images'>Publishing and Editing Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/global-sports-news/' rel='bookmark' title='Global Sports News'>Global Sports News</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Copyright © 2011 <a href="http://yorgonestoridis.com">Yorgo Nestoridis</a>. Visit the original article at <a href="http://yorgonestoridis.com/facebook-marketing/how-to-add-a-facebook-iframe-application-to-your-fans-page/">http://yorgonestoridis.com/facebook-marketing/how-to-add-a-facebook-iframe-application-to-your-fans-page/</a>.<br /><span id="Steps_to_Add_a_Facebook_iFrame_Application_to_your_Fans_Page"><br />
<span id="Steps_to_Add_a_Facebook_iFrame_Application_to_your_Fans_Page"><h2>6 Steps to Add a Facebook iFrame Application to your Fans Page</h2></span>
<p></span></p>
<p>This Tutorial will show how to set up a Facebook iFrame Application in 6 Steps. Since Facebook changed once more the rules Fan Page content is to be added via iFrame Applications. There are some App providers out there who offer quick solutions namely for people who do not have own hosting; these external solutions have the disadvantage that you are not in full control of your frame and that you promote rather the App provider than yourself. For our customers we use a more professional approach. Here below you will find the basic 10 steps to create your own iFrame Application.</p>
<p><span id="What_are_Facebook_iFrame_Applications"><br />
<span id="What_are_Facebook_iFrame_Applications"><h3>What are Facebook iFrame Applications</h3></span>
<p></span></p>
<p>As of February 2011 facebook allows iFrames on Page Tabs as well as on Canvas Pages. The corresponding Applications don’t need to be activated (using the app submission procedure).</p>
<p>In short an iFrame Application allows to load external content to your Fan or Business Page.</p>
<p><span id="The_advantage_of_Facebook_iFrame_Applications"><br />
<span id="The_advantage_of_Facebook_iFrame_Applications"><h3>The advantage of Facebook iFrame Applications</h3></span>
<p></span></p>
<p>As your content is hosted on your own host, you may edit in  standard HTML, CSS and JavaScript like on any other web page.</p>
<p><span id="The_disadvantage_of_Facebook_iFrame_Applications"><br />
<span id="The_disadvantage_of_Facebook_iFrame_Applications"><h3>The disadvantage of Facebook iFrame Applications</h3></span>
<p></span></p>
<p>You need your own hosting and be able to edit HTML, besides that, the freedom is yours.</p>
<p>If you need cheap reliable hosting and professional help to set-up your app, hosting and content, please contact me.</p>
<p><span id="Set_up_your_HTML_page_on_your_Server"><br />
<span id="Set_up_your_HTML_page_on_your_Server"><h3>1. Set up your HTML page on your Server</h3></span>
<p></span></p>
<p>For the purpose of this Tutorial I will create the frame for an application called YORGOO on my cPanel Server.</p>
<p>Create a new folder in your root called “app” into which you will place all your future applications. In the app folder we create a new folder with the name of the new application, in my case: ‘yorgoo’, like so:</p>
<p><img class="alignnone size-full wp-image-21309" title="server-file-structure" src="http://yorgonestoridis.com/wp-content/uploads/2011/06/server-file-structure2.png" alt="Facebook iFrame Application Folder Structure" width="227" height="118" /></p>
<p>In the ‘yorgoo’ applicatuion folder we create an index page and a style-sheet, like so:</p>
<p><img class="alignnone size-full wp-image-21310" title="file-structure" src="http://yorgonestoridis.com/wp-content/uploads/2011/06/file-structure.png" alt="Facebook iFrame Files" width="419" height="128" /></p>
<p>Edit index.html and paste the following minimal content into it:</p>
<pre class="brush: php; title: ; notranslate">

&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;
&lt;html xmlns=&quot;http://www.w3.org/1999/xhtml&quot; xml:lang=&quot;en&quot;&gt;
&lt;head&gt;
&lt;link rel=&quot;stylesheet&quot; type=&quot;text/css&quot; href=&quot;style.css&quot; /&gt;
&lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=iso-8859-1&quot; /&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div id=&quot;container&quot;&gt;
&lt;p&gt;HERE COMES YOUR CONTENT&lt;/p&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p><strong>Note on line 4 </strong>we refer to our style-sheet which we edit and paste in the size of the page. Facebook allows for a display of maximum 520 pixels x 800 pixels. Ideally you keep your content within these limits, however you could also go wider and deeper when editing at the price that either the content will not be displayed to its full extent or that you need to accept scroll bars.</p>
<p>I will keep it sober here and punch into my style-sheet the following:</p>
<pre class="brush: php; title: ; notranslate">

body {
 width:520px;
 margin:0; padding:0; border:0;
 }
</pre>
<p><strong>Note on line 9</strong> we reserve the space within the main content container for whatever you wish to add to your page: this is where you edit your visible page content. For the time being I have just added some text for testing purposes, by replacing the above lines 8 — 10 with the following:</p>
<pre class="brush: php; title: ; notranslate">

&lt;div id=&quot;container&quot;&gt;
&lt;h1&gt;YORGOO&lt;/h1&gt;
&lt;p&gt;We are building here the YORGOO Facebook Application in
support of Small Business and Home Business Builders who wish to take advantage
of Social Media Marketing to generate Free Traffic and Free Leads to promote
their business and increase sales.&lt;/p&gt;
&lt;/div&gt;
</pre>
<p>With a little bit of style, this results in:</p>
<div id="attachment_21311" class="wp-caption alignnone" style="width: 470px"><img class="size-large wp-image-21311" title="page-content1" src="http://yorgonestoridis.com/wp-content/uploads/2011/06/page-content1-460x158.png" alt="Page Content" width="460" height="158" />
<p class="wp-caption-text">Test Page Content</p>
</div>
<p><span id="Install_the_Facebook_Developer_Application"><br />
<span id="Install_the_Facebook_Developer_Application"><h3>2. Install the Facebook Developer Application</h3></span>
<p></span></p>
<p>Now let’s head over to Facebook, sign up if you don’t have an account or just log in.</p>
<p>Visit <a title="Facebook Developers" href="http://facebook.com/developers" >THIS LINK</a> and if prompted, click the <strong>Allow</strong> button.</p>
<p><span id="Create_your_iFrame_Application"><br />
<span id="Create_your_iFrame_Application"><h3>3. Create your iFrame Application</h3></span>
<p></span></p>
<p>Click on the <strong>Set Up New App</strong> Button:</p>
<p><img class="alignnone size-full wp-image-21312" title="setupapp" src="http://yorgonestoridis.com/wp-content/uploads/2011/06/setupapp.png" alt="Set up Button" width="167" height="157" /></p>
<p>Now enter a Name for your Application:</p>
<div id="attachment_21313" class="wp-caption alignnone" style="width: 470px"><img class="size-large wp-image-21313" title="give-app-name" src="http://yorgonestoridis.com/wp-content/uploads/2011/06/give-app-name-460x198.png" alt="Name your App" width="460" height="198" />
<p class="wp-caption-text">Name your App</p>
</div>
<p>Agree to the terms and <strong>Create App</strong>.</p>
<p>You will be prompted with a security check (paptcha), just submit the suggested words.</p>
<p><span id="Edit_the_About_Page"><br />
<span id="Edit_the_About_Page"><h3>4. Edit the About Page</h3></span>
<p></span></p>
<p>Add a description and some eye-catching icons, like so:</p>
<h3>
<div id="attachment_21314" class="wp-caption alignnone" style="width: 470px"><img class="size-large wp-image-21314" title="about" src="http://yorgonestoridis.com/wp-content/uploads/2011/06/about-460x247.png" alt="About" width="460" height="247" />
<p class="wp-caption-text">About</p>
</div>
<p>5. Facebook Integration</h3>
<p>Select “Facebook Integration” from the left-hand menu and scroll down to <strong>Page Tabs</strong> — this is what will be shown in your Facebook sidebar menu:</p>
<div id="attachment_21315" class="wp-caption alignnone" style="width: 470px"><img class="size-large wp-image-21315" title="page-tab" src="http://yorgonestoridis.com/wp-content/uploads/2011/06/page-tab-460x167.png" alt="Page Tabs" width="460" height="167" />
<p class="wp-caption-text">Page Tabs</p>
</div>
<p>If you have a security certificate installed on your server, add also the secure link using https:// (people logging on to Facebook using a secure connection cannot see your page if you don’t provide a secure link — they will be redirected to your wall).</p>
<p>Save your changes.</p>
<p><span id="Add_your_App_to_your_Fan_Page"><br />
<span id="Add_your_App_to_your_Fan_Page"><h3>6. Add your App to your Fan Page</h3></span>
<p></span></p>
<p>Select from the menu <strong>Application Profile Page</strong></p>
<p><img class="alignnone size-large wp-image-21316" title="profile" src="http://yorgonestoridis.com/wp-content/uploads/2011/06/profile-460x390.png" alt="Application Profile Page" width="460" height="390" /></p>
<p>Select <strong>Add to My Page</strong> from the sidebar menu and select the page to which you wish to add the Application:</p>
<p><img class="alignnone size-large wp-image-21317" title="add" src="http://yorgonestoridis.com/wp-content/uploads/2011/06/add-460x421.png" alt="Add to My Page" width="460" height="421" /></p>
<p>Head over to your page and you will now see the new tab!</p>
<p><span id="Incoming_search_terms:"><br />
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span>
<p></span>
<ul>
<li><a href="http://yorgonestoridis.com/facebook-marketing/how-to-add-a-facebook-iframe-application-to-your-fans-page/" title="add design your sneaker apllication to my facebook page">add design your sneaker apllication to my facebook page</a></li>
<li><a href="http://yorgonestoridis.com/facebook-marketing/how-to-add-a-facebook-iframe-application-to-your-fans-page/" title="adding facebook iframe">adding facebook iframe</a></li>
<li><a href="http://yorgonestoridis.com/facebook-marketing/how-to-add-a-facebook-iframe-application-to-your-fans-page/" title="developing facebook applications tutorial">developing facebook applications tutorial</a></li>
<li><a href="http://yorgonestoridis.com/facebook-marketing/how-to-add-a-facebook-iframe-application-to-your-fans-page/" title="facebook page adding applications below info">facebook page adding applications below info</a></li>
<li><a href="http://yorgonestoridis.com/facebook-marketing/how-to-add-a-facebook-iframe-application-to-your-fans-page/" title="how to add app to fan page 2011">how to add app to fan page 2011</a></li>
</ul>
<p><!-- SEO SearchTerms Tagging 2 Plugin --></p>
<p>Related posts:
<ol>
<li><a href='http://yorgonestoridis.com/facebook-marketing/best-rss-facebook-page/' rel='bookmark' title='Permanent Link: Best RSS Facebook Page'>Best RSS Facebook Page</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/yorgo-design/facebook-drawing-board-live/' rel='bookmark' title='Permanent Link: Facebook Drawing Board Live'>Facebook Drawing Board Live</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-marketing/free-traffic-and-free-leads/yorgoo-on-facebook/' rel='bookmark' title='Permanent Link: YORGOO on Facebook'>YORGOO on Facebook</a></li>
<li><a href='http://yorgonestoridis.com/media-marketing-publishing/facebook-ycademy/' rel='bookmark' title='Permanent Link: Facebook Online Seminar by Ycademy'>Facebook Online Seminar by Ycademy</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/ycademy/best-facebook-pages-2/' rel='bookmark' title='Permanent Link: Best Facebook Pages'>Best Facebook Pages</a></li>
</ol>
<span id="Incoming_search_terms:_1"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-add-a-facebook-iframe-application-to-your-fans-page/" title="how to add a facebook app to a page">how to add a facebook app to a page</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-add-a-facebook-iframe-application-to-your-fans-page/" title="facebook add to my page app">facebook add to my page app</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-add-a-facebook-iframe-application-to-your-fans-page/" title="add this app to my page">add this app to my page</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-add-a-facebook-iframe-application-to-your-fans-page/" title="iframes html set up for facebook">iframes html set up for facebook</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-add-a-facebook-iframe-application-to-your-fans-page/" title="how to add an app to your facebook page">how to add an app to your facebook page</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-add-a-facebook-iframe-application-to-your-fans-page/" title="how to create an iFrame app for my Facebook fan page">how to create an iFrame app for my Facebook fan page</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-add-a-facebook-iframe-application-to-your-fans-page/" title="Facebook Fan Page application provider">Facebook Fan Page application provider</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-add-a-facebook-iframe-application-to-your-fans-page/" title="yorgo nestoridis create a fan page on facebook">yorgo nestoridis create a fan page on facebook</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-add-a-facebook-iframe-application-to-your-fans-page/" title="how to add an app to your fan page">how to add an app to your fan page</a></li><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-add-a-facebook-iframe-application-to-your-fans-page/" title="how to add application into my fan page">how to add application into my fan page</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/the-purpose-and-future-of-yorgoo-media/' rel='bookmark' title='The Purpose and Future of YORGOO Media'>The Purpose and Future of YORGOO Media</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/buddypress-featured-on-yorgoo-blaster/' rel='bookmark' title='BuddyPress featured on YORGOO Blaster'>BuddyPress featured on YORGOO Blaster</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/managing-images-on-yorgoo-press/' rel='bookmark' title='Managing Images on YORGOO Press'>Managing Images on YORGOO Press</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/publishing-and-editing-images/' rel='bookmark' title='Publishing and Editing Images'>Publishing and Editing Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/global-sports-news/' rel='bookmark' title='Global Sports News'>Global Sports News</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-add-a-facebook-iframe-application-to-your-fans-page/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Publishing and Editing Images</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-media/publishing-and-editing-images/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-media/publishing-and-editing-images/#comments</comments>
		<pubDate>Wed, 08 Jun 2011 12:10:34 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Nestoridis]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[YORGOO]]></category>
		<category><![CDATA[&]]></category>
		<category><![CDATA[and]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Yorgo]]></category>
		<category><![CDATA[Yorgo Information]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>
		<category><![CDATA[Yorgo news]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=2086</guid>
		<description><![CDATA[Copyright © 2011 Yorgo Nestoridis. Visit the original article at http://yorgonestoridis.com/yorgo-nestoridis/publishing-and-editing-images/.Publishing and Editing Images As our previous post showed: images are great to improve the surfing experience of our visitors. The way we edit however is an important component for different reasons: if we embed large pictures into a post or page, the first impression can be smashing but it can be at the expense of fast loading pages. There are a few remedies to the loading problems you may encounter. How to assure fast page loading The best solution from a user’s point of view: get a fast internet connection.If I am running the previous post on a 24 MB/s line, it’s a piece of cake. If you live in a country where fast lines are not available, then you are at the mercy of webmasters who load less demanding stuff. Thumbnail images Thumbnails load fast and can then expand to most any size. Chose a thumbnail format which is still big enough to attract the curiosity of your visitor. Example: this is a 120x80 thumbnail. It gives a ‘small’ idea about what the big picture could be. Embed medium size Images If a picture is less attractive as [...]


Related posts:<ol><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/where-to-buy-nike-kicks-in-london-at-global-sports/" rel="bookmark" title="Permanent Link: Buy Nike Kicks in London at Global Sports">Buy Nike Kicks in London at Global Sports</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/images-pictures-on-your-blog/" rel="bookmark" title="Permanent Link: Dealing with Images on your Blog">Dealing with Images on your Blog</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/global-sports-us-102/" rel="bookmark" title="Permanent Link: Global Sports US">Global Sports US</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/where-to-buy-nike-kicks-in-london/" rel="bookmark" title="Permanent Link: Nike Kicks on Google by Semiomantics">Nike Kicks on Google by Semiomantics</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/best-buy-nike/" rel="bookmark" title="Permanent Link: Best Buy Nike">Best Buy Nike</a></li>
</ol>
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-make-money-with-images-2/' rel='bookmark' title='How to Make Money with Images'>How to Make Money with Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/managing-images-on-yorgoo-press/' rel='bookmark' title='Managing Images on YORGOO Press'>Managing Images on YORGOO Press</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-make-money-with-images/' rel='bookmark' title='How to Make Money with Images'>How to Make Money with Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/global-sports-news/' rel='bookmark' title='Global Sports News'>Global Sports News</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/protected-global-sports-update/' rel='bookmark' title='Protected: Global Sports Update'>Protected: Global Sports Update</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Copyright © 2011 <a href="http://yorgonestoridis.com">Yorgo Nestoridis</a>. Visit the original article at <a href="http://yorgonestoridis.com/yorgo-nestoridis/publishing-and-editing-images/">http://yorgonestoridis.com/yorgo-nestoridis/publishing-and-editing-images/</a>.<br /><span id="Publishing_and_Editing_Images"><br />
<span id="Publishing_and_Editing_Images"><h2>Publishing and Editing Images</h2></span>
<p></span></p>
<p>As our previous post showed: images are great to improve the surfing experience of our visitors. The way we edit however is an important component for different reasons: if we embed large pictures into a post or page, the first impression can be smashing but it can be at the expense of fast loading pages. There are a few remedies to the loading problems you may encounter.</p>
<p><span id="How_to_assure_fast_page_loading"><br />
<span id="How_to_assure_fast_page_loading"><h3>How to assure fast page loading</h3></span>
<p></span></p>
<p>The best solution from a user’s point of view: get a fast internet connection.If I am running the previous post on a 24 MB/s line, it’s a piece of cake. If you live in a country where fast lines are not available, then you are at the mercy of webmasters who load less demanding stuff.</p>
<p><span id="Thumbnail_images"><br />
<span id="Thumbnail_images"><h3>Thumbnail images</h3></span>
<p></span></p>
<p>Thumbnails load fast and can then expand to most any size. Chose a thumbnail format which is still big enough to attract the curiosity of your visitor.</p>
<p>Example: this is a 120x80 thumbnail. It gives a ‘small’ idea about what the big picture could be.</p>
<div id="attachment_2087" class="wp-caption alignnone" style="width: 130px"><a rel="attachment wp-att-2087" href="http://yorgonestoridis.com/wp-content/uploads/2009/05/bianca-gubalkejpj.jpg"><img class="size-thumbnail wp-image-2087" title="bianca-gubalkejpj" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/bianca-gubalkejpj-120x80.jpg" alt="Bianca Gubalke on the Cover" width="120" height="80" /></a>
<p class="wp-caption-text">Bianca Gubalke on the Cover</p>
</div>
<p><span id="Embed_medium_size_Images"><br />
<span id="Embed_medium_size_Images"><h3>Embed medium size Images</h3></span>
<p></span></p>
<p>If a picture is less attractive as a thumbnail, just embed a medium size format:</p>
<p>Example: 300 wide for this one.</p>
<div id="attachment_2088" class="wp-caption alignnone" style="width: 310px"><a rel="attachment wp-att-2088" href="http://yorgonestoridis.com/wp-content/uploads/2009/05/hanno-coetzee.jpg"><img class="size-medium wp-image-2088" title="hanno-coetzee" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/hanno-coetzee-300x261.jpg" alt="Hanno Coetzee Personalized Business" width="300" height="261" /></a>
<p class="wp-caption-text">Hanno Coetzee Personalized Business</p>
</div>
<p><span id="Embed_maximum_width_Image_only_exceptionally"><br />
<span id="Embed_maximum_width_Image_only_exceptionally"><h3>Embed maximum width Image only exceptionally</h3></span>
<p></span></p>
<p>One big image in a post will not hurt. But if you embed multiple pictures, loading time will increase dramatically.</p>
<p>Example: 500 wide.</p>
<div id="attachment_2089" class="wp-caption alignnone" style="width: 510px"><a rel="attachment wp-att-2089" href="http://yorgonestoridis.com/wp-content/uploads/2009/05/larrie-perkins-filing-online.jpg"><img class="size-large wp-image-2089" title="larrie-perkins-filing-online" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/larrie-perkins-filing-online-500x424.jpg" alt="Larrie Perkins Online Filing in Asia" width="500" height="424" /></a>
<p class="wp-caption-text">Larrie Perkins Online Filing in Asia</p>
</div>
<p>Here we choose the big size because the thumb or 300 would not really have any significant effect.</p>
<p><span id="Use_Slide_Shows"><br />
<span id="Use_Slide_Shows"><h3>Use Slide Shows</h3></span>
<p></span></p>
<p>Slide shows also allow us to save time depending on how they load.</p>
<p>Check it out our next post.</p>
<p><span id="Use_overlay_display_for_large_pictures."><br />
<span id="Use_overlay_display_for_large_pictures."><h3>Use overlay display for large pictures.</h3></span>
<p></span></p>
<p>Check out the extra large versions of the above pictures by clicking on them:</p>
<div id="attachment_2096" class="wp-caption alignnone" style="width: 130px"><a rel="attachment wp-att-2096" href="http://yorgonestoridis.com/wp-content/uploads/2009/05/bianca-gubalke-2.jpg"><img class="size-thumbnail wp-image-2096" title="bianca-gubalke-2" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/bianca-gubalke-2-120x80.jpg" alt="Bianca Gubalke 2" width="120" height="80" /></a>
<p class="wp-caption-text">Bianca Gubalke 2</p>
</div>
<div id="attachment_2097" class="wp-caption alignnone" style="width: 130px"><a rel="attachment wp-att-2097" href="http://yorgonestoridis.com/wp-content/uploads/2009/05/larrie-perkins-big.jpg"><img class="size-thumbnail wp-image-2097" title="larrie-perkins-big" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/larrie-perkins-big-120x80.jpg" alt="Larrie Perkins 2" width="120" height="80" /></a>
<p class="wp-caption-text">Larrie Perkins 2</p>
</div>
<p>Also, some pictures will only develop the desired effect in big format: click to see Ismail from Global Sports :-).</p>
<div id="attachment_2104" class="wp-caption alignnone" style="width: 130px"><a rel="attachment wp-att-2104" href="http://yorgonestoridis.com/wp-content/uploads/2009/05/globalsports-london.jpg"><img class="size-thumbnail wp-image-2104" title="globalsports-london" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/globalsports-london-120x80.jpg" alt="Ismail from Global Sports London" width="120" height="80" /></a>
<p class="wp-caption-text">Ismail from Global Sports London</p>
</div>
<p>or this one? Here our friend Ismail rocks, click below!</p>
<div id="attachment_2110" class="wp-caption alignnone" style="width: 130px"><a rel="attachment wp-att-2110" href="http://yorgonestoridis.com/wp-content/uploads/2009/05/global-sports-london-ismail-4.jpg"><img class="size-thumbnail wp-image-2110" title="global-sports-london-ismail-4" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/global-sports-london-ismail-4-120x80.jpg" alt="Ismail from Global Sports London" width="120" height="80" /></a>
<p class="wp-caption-text">Ismail from Global Sports London</p>
</div>
<p>As you can see: this page loads much faster than the previous post about Besma Bashier <a title="Besma Bashier" href="http://yorgonestoridis.com/yorgo-nestoridis/besma-bashier-122/" >HERE.</a></p>
<p><em>Join tonight’s YORGOO Call if you are interested in implementing the above. 8 pm London Time at <a title="Yorgo Talk" href="http://yorgotalk.com" >yorGOtalk</a>.</em></p>
<p><strong>PS: If you would like to learn how to create such images, please post a comment :-).</strong></p>
<p><strong>PPS: </strong>I forgot: You can always use Galleries to organize the pics of a post or page in a more balanced way:</p>
<p><span id="Gallery"><br />
<span id="Gallery"><h3>Gallery</h3></span>
<p></span></p>
<p><strong><br />
<a href='http://yorgonestoridis.com/yorgo-nestoridis/publishing-and-editing-images/attachment/bianca-gubalkejpj/' title='bianca-gubalke'><img width="120" height="80" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/bianca-gubalkejpj-120x80.jpg" class="attachment-thumbnail" alt="Bianca Gubalke on the Cover" title="bianca-gubalke" /></a><br />
<a href='http://yorgonestoridis.com/yorgo-nestoridis/publishing-and-editing-images/attachment/hanno-coetzee/' title='hanno-coetzee'><img width="120" height="80" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/hanno-coetzee-120x80.jpg" class="attachment-thumbnail" alt="Hanno Coetzee Personalized Business" title="hanno-coetzee" /></a><br />
<a href='http://yorgonestoridis.com/yorgo-nestoridis/publishing-and-editing-images/attachment/larrie-perkins-filing-online/' title='larrie-perkins-filing-online'><img width="120" height="80" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/larrie-perkins-filing-online-120x80.jpg" class="attachment-thumbnail" alt="Larrie Perkins Online Filing in Asia" title="larrie-perkins-filing-online" /></a><br />
<a href='http://yorgonestoridis.com/yorgo-nestoridis/publishing-and-editing-images/attachment/bianca-gubalke-2/' title='bianca-gubalke-2'><img width="120" height="80" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/bianca-gubalke-2-120x80.jpg" class="attachment-thumbnail" alt="Bianca Gubalke 2" title="bianca-gubalke-2" /></a><br />
<a href='http://yorgonestoridis.com/yorgo-nestoridis/publishing-and-editing-images/attachment/larrie-perkins-big/' title='larrie-perkins-big'><img width="120" height="80" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/larrie-perkins-big-120x80.jpg" class="attachment-thumbnail" alt="Larrie Perkins 2" title="larrie-perkins-big" /></a><br />
<a href='http://yorgonestoridis.com/yorgo-nestoridis/publishing-and-editing-images/attachment/globalsports-london/' title='globalsports-london'><img width="120" height="80" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/globalsports-london-120x80.jpg" class="attachment-thumbnail" alt="Ismail from Global Sports London" title="globalsports-london" /></a><br />
<a href='http://yorgonestoridis.com/yorgo-nestoridis/publishing-and-editing-images/attachment/global-sports-london-ismail/' title='global-sports-london-ismail'><img width="120" height="80" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/global-sports-london-ismail-120x80.jpg" class="attachment-thumbnail" alt="Ismail from Global Sports-London" title="global-sports-london-ismail" /></a><br />
<a href='http://yorgonestoridis.com/yorgo-nestoridis/publishing-and-editing-images/attachment/global-sports-london-ismail-4/' title='global-sports-london-ismail-4'><img width="120" height="80" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/global-sports-london-ismail-4-120x80.jpg" class="attachment-thumbnail" alt="Ismail from Global Sports London" title="global-sports-london-ismail-4" /></a><br />
<a href='http://yorgonestoridis.com/yorgo-nestoridis/publishing-and-editing-images/attachment/besma-bashier-41/' title='besma-bashier-41'><img width="120" height="80" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/besma-bashier-41-120x80.jpg" class="attachment-thumbnail" alt="Besma Bashier" title="besma-bashier-41" /></a><br />
<br />
</strong></p>
<p>Related posts:
<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/where-to-buy-nike-kicks-in-london-at-global-sports/' rel='bookmark' title='Permanent Link: Buy Nike Kicks in London at Global Sports'>Buy Nike Kicks in London at Global Sports</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/images-pictures-on-your-blog/' rel='bookmark' title='Permanent Link: Dealing with Images on your Blog'>Dealing with Images on your Blog</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/global-sports-us-102/' rel='bookmark' title='Permanent Link: Global Sports US'>Global Sports US</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/where-to-buy-nike-kicks-in-london/' rel='bookmark' title='Permanent Link: Nike Kicks on Google by Semiomantics'>Nike Kicks on Google by Semiomantics</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/best-buy-nike/' rel='bookmark' title='Permanent Link: Best Buy Nike'>Best Buy Nike</a></li>
</ol>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/publishing-and-editing-images/" title="hanno">hanno</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-make-money-with-images-2/' rel='bookmark' title='How to Make Money with Images'>How to Make Money with Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/managing-images-on-yorgoo-press/' rel='bookmark' title='Managing Images on YORGOO Press'>Managing Images on YORGOO Press</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-make-money-with-images/' rel='bookmark' title='How to Make Money with Images'>How to Make Money with Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/global-sports-news/' rel='bookmark' title='Global Sports News'>Global Sports News</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/protected-global-sports-update/' rel='bookmark' title='Protected: Global Sports Update'>Protected: Global Sports Update</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-media/publishing-and-editing-images/feed/</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>Managing Images on YORGOO Press</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-media/managing-images-on-yorgoo-press/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-media/managing-images-on-yorgoo-press/#comments</comments>
		<pubDate>Wed, 08 Jun 2011 00:10:17 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Nestoridis]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[YORGOO]]></category>
		<category><![CDATA[&]]></category>
		<category><![CDATA[and]]></category>
		<category><![CDATA[Coaching]]></category>
		<category><![CDATA[Images]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Yorgo]]></category>
		<category><![CDATA[Yorgo Information]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>
		<category><![CDATA[Yorgo news]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=2003</guid>
		<description><![CDATA[Copyright © 2011 Yorgo Nestoridis. Visit the original article at http://yorgonestoridis.com/yorgo-nestoridis/managing-images-on-yorgoo-press/.Managing Images on YORGOO Press Tonight’s YORGOO call will deal with Image Management on YORGOO Press. The use of a full image management system is more reliable than the built in original function of the WordPress platform. Compact Album [album id=2 template=compact] How to present screen shots If you have a fast connection, click HERE and watch the movie; in fact on my screen it’s much faster and perfectly smooth but the movie will give an idea what we are talking about when we talk about digital image presentation, 3D effects and so on. Or try this:[kaltura-widget wid=“vn5zceebkw” width=“500” height=“432” addpermission=“0” editpermission=“0” /] or this Extended Album [album id=2 template=extend] Slideshow Let’s have fun tonight! Related posts:Rotating Headers and Banners on YORGOO Press YORGOO and Semiomantics launch YORGOO Press YORGOO Press News YORGOO Press is ready for Release Monetize YORGOO Press


Related posts:<ol><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/publish-images-on-yorgoo-press/" rel="bookmark" title="Permanent Link: Rotating Headers and Banners on YORGOO Press">Rotating Headers and Banners on YORGOO Press</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/yorgoo-press-by-yorgoo-and-semiomantics/" rel="bookmark" title="Permanent Link: YORGOO and Semiomantics launch YORGOO Press">YORGOO and Semiomantics launch YORGOO Press</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/yorgoo-press-news-222/" rel="bookmark" title="Permanent Link: YORGOO Press News">YORGOO Press News</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/events/yorgoo-press-is-ready-for-release/" rel="bookmark" title="Permanent Link: YORGOO Press is ready for Release">YORGOO Press is ready for Release</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/monetize-yorgoo-press/" rel="bookmark" title="Permanent Link: Monetize YORGOO Press">Monetize YORGOO Press</a></li>
</ol>
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-make-money-with-images/' rel='bookmark' title='How to Make Money with Images'>How to Make Money with Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-make-money-with-images-2/' rel='bookmark' title='How to Make Money with Images'>How to Make Money with Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/the-purpose-and-future-of-yorgoo-media/' rel='bookmark' title='The Purpose and Future of YORGOO Media'>The Purpose and Future of YORGOO Media</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/buddypress-featured-on-yorgoo-blaster/' rel='bookmark' title='BuddyPress featured on YORGOO Blaster'>BuddyPress featured on YORGOO Blaster</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/protected-global-sports-update/' rel='bookmark' title='Protected: Global Sports Update'>Protected: Global Sports Update</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Copyright © 2011 <a href="http://yorgonestoridis.com">Yorgo Nestoridis</a>. Visit the original article at <a href="http://yorgonestoridis.com/yorgo-nestoridis/managing-images-on-yorgoo-press/">http://yorgonestoridis.com/yorgo-nestoridis/managing-images-on-yorgoo-press/</a>.<br /><span id="Managing_Images_on_YORGOO_Press"><br />
<span id="Managing_Images_on_YORGOO_Press"><h2>Managing Images on YORGOO Press</h2></span>
<p></span></p>
<p>Tonight’s YORGOO call will deal with Image Management on YORGOO Press. The use of a full image management system is more reliable than the built in original function of the WordPress platform.</p>
<p><span id="Compact_Album"><br />
<span id="Compact_Album"><h3>Compact Album</h3></span>
<p></span></p>
<p>[album id=2 template=compact]</p>
<p><span id="How_to_present_screen_shots"><br />
<span id="How_to_present_screen_shots"><h3>How to present screen shots</h3></span>
<p></span></p>
<div id="attachment_2007" class="wp-caption alignnone" style="width: 367px"><a rel="attachment wp-att-2007" href="http://yorgonestoridis.com/wp-content/uploads/2009/05/yorgoopress.jpg"><img class="size-full wp-image-2007" title="yorgoopress" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/yorgoopress.jpg" alt="YORGOPO Press" width="357" height="267" /></a>
<p class="wp-caption-text">YORGOPO Press</p>
</div>
<div id="attachment_2008" class="wp-caption alignnone" style="width: 490px"><a rel="attachment wp-att-2008" href="http://yorgonestoridis.com/wp-content/uploads/2009/05/screenshots.jpg"><img class="size-full wp-image-2008" title="screenshots" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/screenshots.jpg" alt="More Screen shots" width="480" height="473" /></a>
<p class="wp-caption-text">More Screen shots</p>
</div>
<p>If you have a fast connection, click <a title="Noordhoek on Google Images" href="http://bozzoo.com/video/images1.swf">HERE</a> and watch the movie; in fact on my screen it’s much faster and perfectly smooth but the movie will give an idea what we are talking about when we talk about digital image presentation, 3D effects and so on.</p>
<p>Or try this:[kaltura-widget wid=“vn5zceebkw” width=“500” height=“432” addpermission=“0” editpermission=“0” /]</p>
<p><span id="or_this"><br />
<span id="or_this"><h3>or this</h3></span>
<p></span></p>
<p><object id="o" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="500" height="450"><param name="movie" value="http://apps.cooliris.com/embed/cooliris.swf" /><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><embed type="application/x-shockwave-flash" src="http://apps.cooliris.com/embed/cooliris.swf" width="500" height="450" allowFullScreen="true" allowScriptAccess="always"></embed></object></p>
<p><span id="Extended_Album"><br />
<span id="Extended_Album"><h3>Extended Album</h3></span>
<p></span></p>
<p>[album id=2 template=extend]</p>
<p><span id="Slideshow"><br />
<span id="Slideshow"><h3>Slideshow</h3></span>
<p></span><br />
<!-- Slide.com error: provide id, w, h --></p>
<p>Let’s have fun tonight!</p>
<p>Related posts:
<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/publish-images-on-yorgoo-press/' rel='bookmark' title='Permanent Link: Rotating Headers and Banners on YORGOO Press'>Rotating Headers and Banners on YORGOO Press</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/yorgoo-press-by-yorgoo-and-semiomantics/' rel='bookmark' title='Permanent Link: YORGOO and Semiomantics launch YORGOO Press'>YORGOO and Semiomantics launch YORGOO Press</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/yorgoo-press-news-222/' rel='bookmark' title='Permanent Link: YORGOO Press News'>YORGOO Press News</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/events/yorgoo-press-is-ready-for-release/' rel='bookmark' title='Permanent Link: YORGOO Press is ready for Release'>YORGOO Press is ready for Release</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/monetize-yorgoo-press/' rel='bookmark' title='Permanent Link: Monetize YORGOO Press'>Monetize YORGOO Press</a></li>
</ol>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/managing-images-on-yorgoo-press/" title="yorgoo 2011">yorgoo 2011</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-make-money-with-images/' rel='bookmark' title='How to Make Money with Images'>How to Make Money with Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/how-to-make-money-with-images-2/' rel='bookmark' title='How to Make Money with Images'>How to Make Money with Images</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/the-purpose-and-future-of-yorgoo-media/' rel='bookmark' title='The Purpose and Future of YORGOO Media'>The Purpose and Future of YORGOO Media</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/buddypress-featured-on-yorgoo-blaster/' rel='bookmark' title='BuddyPress featured on YORGOO Blaster'>BuddyPress featured on YORGOO Blaster</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/protected-global-sports-update/' rel='bookmark' title='Protected: Global Sports Update'>Protected: Global Sports Update</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-media/managing-images-on-yorgoo-press/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Noordhoek South Africa</title>
		<link>http://yorgonestoridis.com/yorgo-nestoridis-media/noordhoek-south-africa/</link>
		<comments>http://yorgonestoridis.com/yorgo-nestoridis-media/noordhoek-south-africa/#comments</comments>
		<pubDate>Tue, 07 Jun 2011 12:09:50 +0000</pubDate>
		<dc:creator>Yorgo Nestoridis</dc:creator>
				<category><![CDATA[Design]]></category>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Nestoridis]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Noordhoek]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[YORGOO]]></category>
		<category><![CDATA[&]]></category>
		<category><![CDATA[and]]></category>
		<category><![CDATA[Atahualpa]]></category>
		<category><![CDATA[Configure]]></category>
		<category><![CDATA[Do]]></category>
		<category><![CDATA[estate]]></category>
		<category><![CDATA[Online]]></category>
		<category><![CDATA[Real]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[Things]]></category>
		<category><![CDATA[Tourism]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Website]]></category>
		<category><![CDATA[Yorgo]]></category>
		<category><![CDATA[Yorgo Information]]></category>
		<category><![CDATA[Yorgo Nestoridis]]></category>
		<category><![CDATA[Yorgo news]]></category>

		<guid isPermaLink="false">http://yorgonestoridis.com/?p=1929</guid>
		<description><![CDATA[Copyright © 2011 Yorgo Nestoridis. Visit the original article at http://yorgonestoridis.com/yorgo-nestoridis/noordhoek-south-africa/.Noordhoek goes live on YORGOO Media Noordhoek south of Cape Town has a new website! Bianca Gubalke publishes her Noordhoek blog on YORGOO Media, profiting from the features available for community building. The Atahualpa Theme is a nice solution for the site and Bianca’s configuration results in a sober, attractive and professional site. Let’s see what YORGOO Media can do for a community such as Noordhoek. Noordhoek Located at the foot of Chapman’s Peak Noordhoek and the Noordhoek Valley is one of the preferred destinations around Cape Town. Rural atmosphere, the famous beach, charming accommodation make it an ideal place to go. I am sure Bianca will share with us what life in Noordhoek is all about. Click the image to see live size. Noordhoek on Google Checking out Noordhoek on Google I notice about just tourism related websites, an insignificantÂ  Wiki entry and a Real Estate site. It’s time for a publication by, about and for people from Noordhoek. Noordhoek on YORGOO Media The YORGOO Media platform is an ideal place for communities to build an online network. First because the sites are tuned for high visibility, they are [...]


Related posts:<ol><li><a href="http://yorgonestoridis.com/yorgo-nestoridis/hosting-south-africa-news-105/" rel="bookmark" title="Permanent Link: Hosting South Africa News 105">Hosting South Africa News 105</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/hosting-south-africa-2/" rel="bookmark" title="Permanent Link: Hosting South Africa">Hosting South Africa</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/new-hosting-south-africa-theme-released/" rel="bookmark" title="Permanent Link: New Hosting South Africa Theme Released">New Hosting South Africa Theme Released</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/hosting-south-africa-3/" rel="bookmark" title="Permanent Link: Hosting South Africa">Hosting South Africa</a></li>
<li><a href="http://yorgonestoridis.com/yorgo-nestoridis/hosting-south-africa/" rel="bookmark" title="Permanent Link: Hosting South Africa">Hosting South Africa</a></li>
</ol>
Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/south-africa-houseboats-move-to-hosting-south-africa/' rel='bookmark' title='South Africa Houseboats move to Hosting South Africa'>South Africa Houseboats move to Hosting South Africa</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/monkey-valley-beach-nature-resort-noordhoek/' rel='bookmark' title='Monkey Valley Beach Nature Resort Noordhoek'>Monkey Valley Beach Nature Resort Noordhoek</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/hosting-south-africa/' rel='bookmark' title='Hosting South Africa'>Hosting South Africa</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/hosting-south-africa-2/' rel='bookmark' title='Hosting South Africa'>Hosting South Africa</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/buddypress-featured-on-yorgoo-blaster/' rel='bookmark' title='BuddyPress featured on YORGOO Blaster'>BuddyPress featured on YORGOO Blaster</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Copyright © 2011 <a href="http://yorgonestoridis.com">Yorgo Nestoridis</a>. Visit the original article at <a href="http://yorgonestoridis.com/yorgo-nestoridis/noordhoek-south-africa/">http://yorgonestoridis.com/yorgo-nestoridis/noordhoek-south-africa/</a>.<br /><span id="Noordhoek_goes_live_on_YORGOO_Media"><br />
<span id="Noordhoek_goes_live_on_YORGOO_Media"><h2>Noordhoek goes live on YORGOO Media</h2></span>
<p></span></p>
<p>Noordhoek south of Cape Town has a new website! <a title="Bianca Gubalke" href="http://cashflowin.com/wegotop/profile.html" >Bianca Gubalke</a> publishes her Noordhoek blog on YORGOO Media, profiting from the features available for community building. The Atahualpa Theme is a nice solution for the site and Bianca’s configuration results in a sober, attractive and professional site.</p>
<p>Let’s see what YORGOO Media can do for a community such as Noordhoek.</p>
<p><span id="Noordhoek"><br />
<span id="Noordhoek"><h3>Noordhoek</h3></span>
<p></span></p>
<p>Located at the foot of Chapman’s Peak Noordhoek and the Noordhoek Valley is one of the preferred destinations around Cape Town. Rural atmosphere, the famous beach, charming accommodation make it an ideal place to go.</p>
<p>I am sure Bianca will share with us what life in Noordhoek is all about.</p>
<div id="attachment_1932" class="wp-caption alignnone" style="width: 510px"><a rel="attachment wp-att-1932" href="http://yorgonestoridis.com/wp-content/uploads/2009/05/noordhoek.jpg"><img class="size-large wp-image-1932" title="noordhoek" src="http://yorgonestoridis.com/wp-content/uploads/2009/05/noordhoek-500x322.jpg" alt="Noordhoek Image" width="500" height="322" /></a>
<p class="wp-caption-text">Noordhoek Image</p>
</div>
<p>Click the image to see live size.</p>
<p><span id="Noordhoek_on_Google"><br />
<span id="Noordhoek_on_Google"><h3>Noordhoek on Google</h3></span>
<p></span></p>
<p>Checking out <a title="Noordhoek on Google" href="http://www.google.com/search?hl=en&amp;q=Noordhoek&amp;btnG=Search" >Noordhoek </a>on Google I notice about just tourism related websites, an insignificantÂ  <a title="Noordhoek on Wikipedia" href="http://en.wikipedia.org/wiki/Noordhoek,_Cape_Town" >Wiki</a> entry and a Real Estate site. It’s time for a publication by, about and for people from Noordhoek.</p>
<p><span id="Noordhoek_on_YORGOO_Media"><br />
<span id="Noordhoek_on_YORGOO_Media"><h3>Noordhoek on YORGOO Media</h3></span>
<p></span></p>
<p>The YORGOO Media platform is an ideal place for communities to build an online network. First because the sites are tuned for high visibility, they are easy and quick to set up and best of all: they are FREE. Second because the personal sites are linked through the BuddyPress module which allows for the creation of a real social network. Setting up a Group called Noordhoek is a matter of 3 seconds. Inviting people from Noordhoek to join is an easy task — it’s enough to make it known that the facility exists.</p>
<p><span id="Noordhoek_Online_Business"><br />
<span id="Noordhoek_Online_Business"><h2>Noordhoek Online Business</h2></span>
<p></span></p>
<p>Let’s think about it:</p>
<p>You would like to launch a local online business but you don’t want to bother with technicalities, hosting, scripts and other distracting stuff. You neither want to spend a lot of money to start with, but you want to offer a real service to the community which can be financed by local and external advertisers.</p>
<p>Here is my plan:</p>
<p><strong>1. Grab all Google top 10 positions on “Noordhoek”</strong> with Noordhoek related sub-domains on YORGOO Media plus use your own sites to get there as well. The point is: all these tourism and real estate sites need to buy advertising space either from you or from Google.</p>
<p>Examples:</p>
<p><span id="noordhoek-realestate.yorgoomedia.com"><br />
<span id="noordhoek-realestate.yorgoomedia.com"><h3>noordhoek-realestate.yorgoomedia.com</h3></span>
<p></span><br />
<span id="noordhoek-tourism.yorgoomedia.com"><br />
<span id="noordhoek-tourism.yorgoomedia.com"><h3>noordhoek-tourism.yorgoomedia.com</h3></span>
<p></span><br />
<span id="noordhoek-accommodation.yorgoomedia.com"><br />
<span id="noordhoek-accommodation.yorgoomedia.com"><h3>noordhoek-accommodation.yorgoomedia.com</h3></span>
<p></span><br />
<span id="noordhoek-horsebackriding.yorgoomedia.com"><br />
<span id="noordhoek-horsebackriding.yorgoomedia.com"><h3>noordhoek-horsebackriding.yorgoomedia.com</h3></span>
<p></span></p>
<p><strong>2. Offer free websites</strong> to the whole population of Noordhoek and show them how they can use the social network as well as the blog.</p>
<p><strong>3. Get a license from YORGOO Media</strong> to load a few themes for the users from Noordhoek; build local ads straight into these themes and adapt them as need arises. Make sure that on every site there is community news.</p>
<p><strong>4. Get local contributors</strong> for the Noordhoek main site to make it THE authority site.</p>
<p>The nice thing about the plan: the <em>population of Noordhoek</em> shapes the online profile and image of their town instead of people from outside. This is all in line with our philosophy about: get in control of your name and brand. Why should Noodhoek not be master of its own destiny? Why should Noordhoek just remain in the hands of big brother Google and some smart agencies in Cape Town making the money on the brand name Noordhoek?</p>
<p>Hey guys and gals from Noordhoek: let’s bring the cash back home and let’s shape the Noordhoek Online Image together. YORGOO Media is ready to help and to support the project.</p>
<p>Related posts:
<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/hosting-south-africa-news-105/' rel='bookmark' title='Permanent Link: Hosting South Africa News 105'>Hosting South Africa News 105</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/hosting-south-africa-2/' rel='bookmark' title='Permanent Link: Hosting South Africa'>Hosting South Africa</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/new-hosting-south-africa-theme-released/' rel='bookmark' title='Permanent Link: New Hosting South Africa Theme Released'>New Hosting South Africa Theme Released</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/hosting-south-africa-3/' rel='bookmark' title='Permanent Link: Hosting South Africa'>Hosting South Africa</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/hosting-south-africa/' rel='bookmark' title='Permanent Link: Hosting South Africa'>Hosting South Africa</a></li>
</ol>
<span id="Incoming_search_terms:"><h4>Incoming search terms:</h4></span><ul><li><a href="http://yorgonestoridis.com/yorgo-nestoridis-media/noordhoek-south-africa/" title="yorgoomedia com">yorgoomedia com</a></li></ul><p>Related posts:<ol>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/south-africa-houseboats-move-to-hosting-south-africa/' rel='bookmark' title='South Africa Houseboats move to Hosting South Africa'>South Africa Houseboats move to Hosting South Africa</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-development/monkey-valley-beach-nature-resort-noordhoek/' rel='bookmark' title='Monkey Valley Beach Nature Resort Noordhoek'>Monkey Valley Beach Nature Resort Noordhoek</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/hosting-south-africa/' rel='bookmark' title='Hosting South Africa'>Hosting South Africa</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis/hosting-south-africa-2/' rel='bookmark' title='Hosting South Africa'>Hosting South Africa</a></li>
<li><a href='http://yorgonestoridis.com/yorgo-nestoridis-media/buddypress-featured-on-yorgoo-blaster/' rel='bookmark' title='BuddyPress featured on YORGOO Blaster'>BuddyPress featured on YORGOO Blaster</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://yorgonestoridis.com/yorgo-nestoridis-media/noordhoek-south-africa/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

