Posts Tagged ‘Header’

Adding a Favicon

Today, I created a simple favicon for this site. I need to improve this site.

Sitemaps in WordPress

After using Google Analytics for few months, we are very happy with it. Today we knew about Google webmaster central. This site contains lots of webmaster resources including tools that helping to improve traffic to our site.

Fix Canvas Size in Processing.js

Finally the shape of the circle inside the canvas looks correct. Size of the canvas should stated inside setup() function in JavaScript and not CSS. We guess, if we did not mention the size of the canvas inside the setup() function, the default size, width is 200px and height is 200px, will be set. When [...]

WordPress Header Animation with Processing.js

After I knew about Processing.js, “WordPress header animation with Processing.js” is in my to do list. I finally get it up today. I studied and modified the current header animation from Processing.js. I hope I can create more advance and impressive animation in future. Below is the modified code as reference.

WordPress Theme Development 3 – Header

Normally, header.php will start with html doctype declaration, and xhtml namespace. By default, WordPress theme is using XHTML 1.0 Transitional. WordPress function, language_attributes();, will display the language attributes for the html tag. If you want your site supporting XFN (XHTML Friends Network), you can add profile=”http://gmpg.org/xfn/11″ for the header tag. Inside header tag, you will [...]

WordPress List Pages

On previous post, I edited the header.php for including horizontal menu on listing main pages on this site. The code is as below:

Add Google Analytics Tool to WordPress

Yes, I want to have Google analytics tool in my site. I decided to add the tracking code, ga.js, in header.php (theme template file) right after <body>.

Creating a Horizontal Menu

I want my site to have a horizontal menu. So that my friend can easily browse to the page they want. Here are the steps for WordPress 2.6 that I do: Step 1: Create horizontal menu showing page list First I have to decide what page need to be in the horizontal menu. Currently, I [...]