<?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>cZarte Design &#187;  Tutorials</title>
	<atom:link href="http://www.czarte.eu/lang/en-us/in/navody/feed" rel="self" type="application/rss+xml" />
	<link>http://www.czarte.eu</link>
	<description>Freelance Designer, Webdesigner, Painter</description>
	<lastBuildDate>Tue, 15 Jun 2010 23:31:28 +0000</lastBuildDate>
	<language>en-us</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title> My first unobtrusive JavaScript</title>
		<link>http://www.czarte.eu/lang/en-us/navody/muj-prvni-unobtrusive-javascript-my-first-unobtrusive-javascript</link>
		<comments>http://www.czarte.eu/lang/en-us/navody/muj-prvni-unobtrusive-javascript-my-first-unobtrusive-javascript#comments</comments>
		<pubDate>Wed, 28 Apr 2010 09:40:51 +0000</pubDate>
		<dc:creator>czarte</dc:creator>
				<category><![CDATA[ Tutorials]]></category>
		<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[unobtrusive JavaScript]]></category>

		<guid isPermaLink="false">http://www.czarte.eu/?p=349</guid>
		<description><![CDATA[First realy unobtrusive JavaScript using Jquery. In &#60;head&#62; area in our HTML document we link in twho files: 1) jquery latest 2)unobtrusive script &#60;script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"&#62;&#60;/script&#62; &#60;script type="text/javascript" src="mujskript.js"&#62;&#60;/script&#62; mujskript.js contains  javaScript, which is trigered all needed elements from outside, so we can clen &#8220;onMouseOver&#8221; and so from our HTML . $(document).ready(function(picshow){ $(".post").hover( function () [...]]]></description>
			<content:encoded><![CDATA[
<p><span lang="en-us">First realy unobtrusive JavaScript using <a href="http://jquery.com/" target="_blank">Jquery</a>.</span></p>

<p><span lang="en-us">In &#60;head&#62; area in our HTML document we link in twho files:<!--more--></span></p>
<p>1) jquery latest</p>
<p>2)unobtrusive script</p>
<pre id="line14">&#60;script type="text/javascript" src="<a href="view-source:http://code.jquery.com/jquery-latest.js">http://code.jquery.com/jquery-latest.js</a>"&#62;&#60;/script&#62;
&#60;script type="text/javascript" src="mujskript.js"&#62;&#60;/script&#62;</pre>

<p><span lang="en-us">mujskript.js contains  javaScript, which is trigered all needed elements from outside, so we can clen &#8220;onMouseOver&#8221; and so from our HTML .</span></p>
<pre id="line14">
<pre id="line14"> $(document).ready(function(picshow){
        $(".post").hover(
          function () {
            var postID = this.id;
            $("#image-" + postID).parent().animate({opacity: "0.95"}, 1);
            $("#image-" + postID).attr("style","z-index: 5");
            $("#image-" + postID).parent().animate({opacity: "1"}, "fast");
          },
          function () {
           var postID = this.id;
           $("#image-" + postID).attr("style","z-index: 1");
          }
        );
    });</pre>
</pre>

<p><span lang="en-us">In HTML we will create only structure with IDs and CLASSes.</span></p>
<pre id="line105">&#60;div class="widget thin"&#62;
 &#60;div id="wrapimages"&#62;

  &#60;div id="postmenu"&#62;</pre>
<pre id="line123">  &#60;ul&#62;
    &#60;li&#62;&#60;a class="post" id="post-73" href="http://www.domena.cz/kategorie/stavby/
         hotely/hotel-savanah/" title="Hotel Padova"&#62;Hotel Padova&#60;/a&#62;&#60;/li&#62;
    &#60;li&#62;&#60;a class="post" id="post-84" href="http://www.domena.cz/kategorie/
         stavby/hotely/hotel-thalia-eurostar/" title="Hotel Euroforte"&#62;Hotel Euroforte&#60;/a&#62;&#60;/li&#62;
  &#60;/ul&#62;
  &#60;/div&#62;</pre>
<pre id="line142">  &#60;h2 class="nodisplay"&#62;Hotel Savanah&#60;/h2&#62;
  &#60;img src="http://www.domena.cz/uploads/StatueDome.jpg" alt="" id="image-post-73" /&#62;
  &#60;h2 class="nodisplay"&#62;hotel thalia eurostar&#60;/h2&#62;
  &#60;img src="http://www.domena.cz/uploads/301_2Exterior_thalia.jpg" alt="" id="image-post-84" /&#62;
  &#60;/div&#62;

 &#60;div class="cleaner"&#62;&#38;nbsp;&#60;/div&#62;</pre>
<pre id="line157"> &#60;/div&#62;
&#60;/div&#62;
</pre>

<p><span lang="en-us">And in CSS we`ll define selectors.</span></p>
<pre>
<pre>#wrapimages {position: relative;}
#wrapimages img {position: absolute;}
#wrapimages #postmenu {position: absolute; z-index: 20;}</pre>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.czarte.eu/lang/en-us/navody/muj-prvni-unobtrusive-javascript-my-first-unobtrusive-javascript/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title> Add post in WordPress admin</title>
		<link>http://www.czarte.eu/lang/en-us/navody/pridavani-clanku-v-administraci-wordpress-add-post-in-wordpress-admin</link>
		<comments>http://www.czarte.eu/lang/en-us/navody/pridavani-clanku-v-administraci-wordpress-add-post-in-wordpress-admin#comments</comments>
		<pubDate>Tue, 26 Jan 2010 15:08:51 +0000</pubDate>
		<dc:creator>czarte</dc:creator>
				<category><![CDATA[ Tutorials]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.czarte.eu/?p=297</guid>
		<description><![CDATA[Today we get focus at adding post in WordPress admin. Basic login supose to be at www.mydomain.com/wp-admin, there we insert login name and password and than press button under form. At picture no.1 we can watch basic dashboard of administration. At left side is situated basic menu where are selection of basic fields of actions [...]]]></description>
			<content:encoded><![CDATA[
<p><span lang="en-us">Today we get focus at adding post in WordPress admin. Basic login supose to be at www.mydomain.com/wp-admin, there we insert login name and password and than press button under form.</span></p>
<p><span id="more-297"></span><span lang="en-us"><br />
</span></p>

<p><span lang="en-us">At picture no.1 we can watch basic dashboard of administration. At left side is situated basic menu where are selection of basic fields of actions posibly used for web enhancement or maintainance.</span></p>
<p><a rel="lightbox[1]" href="http://www.czarte.eu/czarte/wp-content/uploads/2010/01/plublikace-sc1.jpg"><img class="size-thumbnail wp-image-300 alignnone" title="plublikace-sc1" src="http://www.czarte.eu/czarte/wp-content/uploads/2010/01/plublikace-sc1-330x250.jpg" alt="plublikace-sc1" width="330" height="250" /></a></p>

<p><span lang="en-us">At picture we can see sign on the item  &#8220;posts&#8221; &#8211; &#8220;add new&#8221; which will send us to page with input fields for new post at website.</span></p>

<p><span lang="en-us">At next picture we will see this form for add new post. Here we have signs at form fields, which will be described in next step.</span></p>
<p><a rel="lightbox[2]" href="http://www.czarte.eu/czarte/wp-content/uploads/2010/01/plublikace-sc2.jpg"><img class="size-thumbnail wp-image-304 alignnone" title="plublikace-sc2" src="http://www.czarte.eu/czarte/wp-content/uploads/2010/01/plublikace-sc2-229x249.jpg" alt="plublikace-sc2" width="229" height="249" /></a></p>

<p><span lang="en-us">1) Title of post</span></p>

<p><span lang="en-us">2) Uploading media files</span></p>

<p><span lang="en-us">3) Switch between visual and html editor</span></p>

<p><span lang="en-us">4) Control elements od visual editor</span></p>

<p><span lang="en-us">5) Body of the Post</span></p>

<p><span lang="en-us">6) Excerpt of post &#8211; if empty and template supports excerpt, but without condition to show alternate content, will be shown part of the body of the Post. Approx. 50 words.</span><span lang="en-us"><br />
</span></p>

<p><span lang="en-us">7) Here you can add trackback for quoted websites</span></p>

<p><span lang="en-us"> <img src='http://www.czarte.eu/czarte/wp-includes/images/smilies/icon_cool.gif' alt='8)' class='wp-smiley' /> Custom fields must be supported by theme. Thane we can add here plain text nor html</span></p>

<p><span lang="en-us">9) Name of custom field &#8211; must be supported in template. Contain some kind of name, which point to some content of custom fields. You can fill under one name many content, and if is supported in template, you can print all of them on page or post, what ever you want. If some fields alredy attached to any Post on your page, you can select some of them to attache more of these fields to this post we are editing. If we want to attach brand new field with different name not exist in this select box, we can press &#8220;enter new&#8221; link under this area. </span></p>

<p><span lang="en-us">10)Content of custom field &#8211; must be supported in template. All text, hyperlinks, html and so could be entered</span></p>

<p><span lang="en-us">11) Button for attaching field to the Post.</span></p>

<p><span lang="en-us">12) Here you can allow comments and trackbacks.</span></p>

<p><span lang="en-us">13) Attaching the Post to some of the caregories. You can add one post to multiple categories.</span></p>

<p><span lang="en-us">14) Tags are banding posts to thematic groups. We can add several posts to one Tag, and if we put some widget to our sidebar, we can show the tag cloud there, possibly known from lot of modern websites.</span></p>

<p><span lang="en-us">15) Publishing panel. Here we can publish the Post, change his status as &#8220;Pending Preview&#8221;, &#8220;Draft&#8221; , unpublish or delete it.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.czarte.eu/lang/en-us/navody/pridavani-clanku-v-administraci-wordpress-add-post-in-wordpress-admin/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title> Tutorial for WP-image-slider</title>
		<link>http://www.czarte.eu/lang/en-us/navody/wp-image-slider</link>
		<comments>http://www.czarte.eu/lang/en-us/navody/wp-image-slider#comments</comments>
		<pubDate>Sun, 11 Oct 2009 10:50:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[ Tutorials]]></category>
		<category><![CDATA[ Gallery]]></category>
		<category><![CDATA[Jquery]]></category>

		<guid isPermaLink="false">http://www.czarte.eu/www/?p=151</guid>
		<description><![CDATA[We bringing picture tutorial for use wp-image-slider plugin, which allowed us to enter animated galleries to pages or posts. If we want to create new gallery, od edit complete one, we must go in administration at panel &#8220;WP image slider&#8221; as we can see at picture no. 1. picture no. 1 Here, if we alredy [...]]]></description>
			<content:encoded><![CDATA[
<p><span lang="en-us">We bringing picture tutorial for use wp-image-slider plugin, which allowed us to enter animated galleries to pages or posts. If we want to create new gallery, od edit complete one, we must go in administration at panel &#8220;WP image slider&#8221; as we can see at picture no. 1.</span></p>
<p><span id="more-151"></span></p>
<p><a rel="lightbox[obr1]" href="http://www.czarte.eu/czarte/wp-content/uploads/2009/10/screen1.jpg"><img class="size-medium wp-image-64  alignnone" title="screen1" src="http://www.czarte.eu/czarte/wp-content/uploads/2009/10/screen1-484x400.jpg" alt="Obrázek číslo 1" /></a></p>
<p> <span lang="en-us">picture no.</span> 1</p>

<p><span lang="en-us">Here, if we alredy have some galleries &#8211; see at picture no.2 &#8211; we will see list of them, including special tags (wp bracket) /point no. 4/ which allowed us to paste it in post or page to show our gallery in content. We can also use button for edit it, or delete it /no. 2 and 3/. At this page we can find button for create new gallery /no. 1/</span></p>
<p><a rel="lightbox[obr2]" href="http://www.czarte.eu/czarte/wp-content/uploads/2009/10/screen2.jpg"> <img class="size-medium wp-image-65  alignnone" title="screen2" src="http://www.czarte.eu/czarte/wp-content/uploads/2009/10/screen2-488x400.jpg" alt="Obrázek č.2" /></a></p>
<p> <span lang="en-us">pic no.</span> 2</p>

<p><span lang="en-us">The enviroment of editing and creating galleries looks almost same &#8211; see at picture no.3 &#8211; so I put here only picture with creation of new gallery. Pictures we can add by checking boxes under picture. In case editing of some existing gallery are included pictures already selected. If we create new gallery, we must enter its name /no. 1/. Than we cane define width and height of gallery /no. 2 and 3/ and at last also align of galery in page /no. 4/. We finish creation by submit it with button under gallery and save that informations /no.5/</span></p>
<p><a rel="lightbox[obr3]" href="http://www.czarte.eu/czarte/wp-content/uploads/2009/10/screen3.jpg"><img class="size-large wp-image-66    alignnone" title="screen3" src="http://www.czarte.eu/czarte/wp-content/uploads/2009/10/screen3-593x799.jpg" alt="obráek č.3" /></a></p>
<p> <span lang="en-us">pic no.</span> 3</p>
]]></content:encoded>
			<wfw:commentRss>http://www.czarte.eu/lang/en-us/navody/wp-image-slider/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
