WordPress 101 Video: How to Fill Out Your User Profile in WordPress

Posted by Nile | Posted in Tutorials | Posted on 23-04-2011 | 3

The following video tutorial is for newbies, specifically focusing on guiding you, the user through filling out your profile in WordPress.

This is a great function with any WordPress powered site, especially if you have a theme that has an author box or even author template to call the information from your profile. This could prove beneficial not just for blogs, but for businesses too.

The ending got a little cut off, but mainly the ending was basically to hit the submit button at the bottom after you have filled in your profile information. By the way, as mentioned briefly in the video, you might want to sign yourself up for Gravatar, which you can upload your own avatar image and it will display on your site or any WordPress powered site when you use your email address. :)

I hope this tutorial helps. Feel free to leave comments and

WordPress 101 Video: How To Publish A Page In WordPress

Posted by Nile | Posted in Tutorials | Posted on 22-04-2011 | 0

Here is a video tutorial for newbie WordPress users on how to publish a page in WordPress. Pages and posts although seem alike, they are used for different purposes. Pages are usually more static, as mentioned in the video. Static is usually more for pages you normally do not update as often, like an About page or Contact page.

Hope the tutorial above helped for those still new to WordPress. I would recommend watching the video tutorial on posts too.

There are a lot of videos and as time goes on, I hope to cover more, so please feel free to suggest topics for WordPress videos. Those who are not newbies, please feel free to also suggest on topics that you really could have used when you started using WordPress. It really helps a lot.

WordPress 101 Video: A Walk Through WordPress

Posted by Nile | Posted in Tutorials | Posted on 22-04-2011 | 0

Below is a video screen cast in which I walk through WordPress. This is good for newbies, especially those who have not tried WordPress, or might be intimidated going into their own WordPress back-end without any knowledge.

The ending got a little cut off, but basically that was the end. This was a general introduction guide for WordPress, so if you have any questions or would like to see any other screencasts made, feel free to leave a comment. :)

Adding A Favicon To Your Website

Posted by Nile | Posted in Tutorials | Posted on 28-03-2011 | 5

The definition for a favicon at Wikipedia is:

A favicon (short for favorites icon), also known as a website icon, shortcut icon, url icon, or bookmark icon is a 16×16, 32×32 or 64×64 pixel square icon associated with a particular website or webpage.

Favicon Example

For the rest of us who are not as technical. It is that tiny picture next to the browser URL area that might change when visiting one site to the next.

1. To add one, it is simple. First you at least need to make a 16×16 pixel icon in your graphic editing program.

2. Convert it to the accepted .ico (for icon) file extension. There are a few online. Here is one I often use: Favicon Generator Tool at· Dagon Design

3. Once you have saved the file to your computer, you will need to upload it to your web hosting space.

4. In your layout’s template, before the ending head tag, put the following code:

<link rel="shortcut icon" href="http://YOURDOMAINHERE/favicon.ico" />

Make sure you replace “YOURDOMAINHERE” with your URL path where you have uploaded your favicon file.

Once you have done, bookmark your page. You might have to clear your computer’s cache, and also restart your browser to see the changes.

For those who use WordPress, normally this would go in your header.php file. In the case that you are deciding to use a plugin for this – DO NOT. Just use this tutorial. Less coding and if you are still confused, ask and I can try to help walk you through it.

Basic HTML Tutorial – What is HTML?

Posted by Nile | Posted in Tutorials | Posted on 25-03-2011 | 6

HTML is a short acronym for HyperText Markup Language. The language consists of tags surrounded by angle brackets and can effect the way a person sees a website. It can be used in scripting languages like cgi, php, and javascript to person any number of actions.

Example of a tag:
<head>.

A basic page consists of several key points that should be placed in the layout. There will be another tutorial illustrating how to build a basic page, but below is very general example of how a web page is composed. In a way, the HTML to a browser is somewhat like Writing is to a Book. It tells a story all in itself on how the page should look.

Here is the basic bare bones structure of a page:

<!DOCTYPE html>
<html>
<head>
<title>Your Site Title</title>
</head>
<body>
<p>Your Site Content Goes Here.</p>
</body>
</html>

The Document Type, HTML Head, Title, Body, tags are extremely important and should always exist when coding a website layout or the page may not show up properly or not at all. If you notice, the tags seem to be repeated, but the second time it is repeated with a forward slash (‘/’) in front of the tag name. For every open tag, there must be a closed tag. Some tags like linebreak (br), and image source (img) tags are singular tags and the forward slash is within the url.

Just a few example of tags that do not have a paired tag:

<br />
<img src="YOURIMAGEFILEHERE" alt="IMAGENAMEHERE" />

If you put a web page together, you can label the page with the extension of .html or .htm and view it offline (without accessing the Internet) or you can load it to a server, whether you pay for a webhost or for a free account.

When breaking down the code above for the basic HTML page, you will note that there are really 3 main sections: the header, the content, and the footer.

The Header

<!DOCTYPE html>
<html>
<head>
<title>Your Site Title</title>
</head>
<body>

The Content


<p>Your Site Content Goes Here.</p>

The Footer


</body>

</html>

In between the body tags goes the code for all of your layout and content. In the header, that is normally where you will put in your style sheet code and any elements like javascript or other script to help allow your layout to dynamically function.

WordPress 101 Video: How To Create A New User In WordPress

Posted by Nile | Posted in Tutorials | Posted on 05-02-2011 | 2

Here is a video illustrating to new WordPress users on how to add more users to their site. While some have figured it out, others need an extra hand to become more familiar with their WordPress backend. I hope this short video screencast will help.

WordPress 101 Video: Setting Up Permalinks In WordPress

Posted by Nile | Posted in Tutorials | Posted on 02-12-2010 | 0

This video is to help users know how to set up their permalink structure in WordPress. There are a few little tips in there, but this will help for those not wanting the default post ID URL structure, and something more customized and SEO-friendly.

WordPress 101 Video: Editing, and Adding Images in WordPress

Posted by Nile | Posted in Tutorials | Posted on 29-11-2010 | 2