November 26th, 2009

Css

I’m Stuck in Table Grid

If you find yourself stuck in styling your table, checkout HTML and CSS table border style Wizard at Samacon.com, Whew! that’s a long title isn’t it? It can help you to design a simple table grid in no time, Samacon helped me solve some bug issues in IE6.  In the case of browser compatibility I think it works best in explorer 6 but it doesn’t support the border-spacing CSS2 table property and it doesn’t work in opera and IE5 as well. Check out the site for more browser compatibility.

October 31st, 2009

Personal

I am back

Finally, my site is back, right now I’m planning on creating two new blog, I don’t have a name right now but one site will be related to web resources for designers and developer, posting some new stuff like some freebies, psd and wordpress templates, some site showcase, wordpress hacks collections and new trends. And other is for photography, displaying all the photos I’ve have taken in some places, events, people, foods etc…

I’ll keep you posted, keep on visiting or you can grab my rss feed.

October 2nd, 2009

Design, Personal

September 27th, 2009

Personal

September 19th, 2009

Design

I don’t know what am I doing

I’m just playing around with photoshop until I end up with this.

dont-know

September 18th, 2009

Jquery

Horizontal scroll using jquery scrollTo

You may already saw this in some other website scrolling horizontal and vertical smoothly with easing. I will show you how to do this using jquery scrollTo plugin. I’m not going show you the full details about this plugin. You can visit Ariel Flesler : jquery.ScrollTo to see detailed instruction and more settings.

(more…)

August 18th, 2009

Wordpress

WordPress Breadcrumbs

Breadcrumbs by Chris

Breadcrumbs code by Chrispoole.com. This is design to use in wordpress. Thanks chris.

/*
* quick and dirty breadcrumb menu
* initially designed for wordpress
*/
function CPbreadcrumbs() {
$CPtheFullUrl = $_SERVER["REQUEST_URI"];
$CPurlArray=explode("/",$CPtheFullUrl);
echo '<a href="/">Home</a>';
while (list($CPj,$CPtext) = each($CPurlArray)) {
$CPdir='';
if ($CPj > 1) {
$CPi=1;
while ($CPi < $CPj) {
$CPdir .= '/' . $CPurlArray[$CPi];
$CPtext = $CPurlArray[$CPi];
$CPi++;
}
if($CPj < count($CPurlArray)-1) echo ' » <a href="'.$CPdir.'">' . str_replace("-", " ", $CPtext) . '</a>';
}
}
echo wp_title();
}
CPbreadcrumbs();

Another example is adding in the function.php

Posted by Jean-Baptiste Jung in catswhocode.com. Simply adding this php code in your function.php.

function the_breadcrumb() {
if (!is_home()) {
echo '<a href="';
echo get_option('home');
echo '">';
bloginfo('name');
echo "</a> » ";
if (is_category() || is_single()) {
the_category('title_li=');
if (is_single()) {
echo " » ";
the_title();
}
} elseif (is_page()) {
echo the_title();
}}}

and call it in the page or in the header

Very simply and easy. Cheers to both you guys.

July 2nd, 2009

Wordpress

Redirect Loop in Firefox

This really freaks me out trying to figure out why I have this error in firefox.Redirect Loop
Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
The browser has stopped trying to retrieve the requested item. The site is redirecting the request in a way that will never complete.
* Have you disabled or blocked cookies required by this site?
* NOTE: If accepting the site’s cookies does not resolve the problem, it is likely a server configuration issue and not your computer.

I uploaded a new site, new database, new wordpress, new, new and new….. Another question is that I can see my admin page but why I can’t login??? I’m trying to solve the problem and it took me 2 hours to figure out with the help of my friend Joni. She edit the option www in my control panel. I don’t know what it’s called but here are the options.

How do you like the www in your URL?

  1. Both http://www.domain.com/ and http://domain.com/ work.
  2. Add “www.” if somebody goes to http://domain.com/
  3. Remove “www.” if somebody goes to http://www.domain.com/

She set it to 1, before It was set to number 2 or 3 I guess. Now yahoooo.. all is fine. Thanks to joni.

If you encounter this problem you now the solution. Here is another option you can try. In case this will not work.

firefox-has-detected-that-the-server-is-redirecting-the-request-for-this-address

July 1st, 2009

Jquery

Simple animation using jquery

Simple Animation Using jquery

Last week our Team Head asked me to edit some pictures for his friend’s employees. These pictures are for passport use so I removed the colored background and changed it into white. So, I’ve done all of it and I send it back with plain white background. After that I started to play with it until I feel half happy with the result and add some animation in jquery.

(more…)

June 7th, 2009

Photography

Lets Walk

Thank you guys for visiting my site. It took me long time to finish this. This is my first post so I decided to post some photos taken here in Corniche Beach Abu Dhabi.

letswalk-37

Lets Walk

(more…)