YAML

If you as me like an elastic or flexible designs, I like to introduce you YAML (”Yet Another Multicolumn Layout”) - XHTML/CSS–framework developed for creating a flexible and user-friendly layouts. We all know of the importance of flexible layouts as there are millions screens out there: mobile, handhelds, WebTV, etc. Flexible design (as here at SEO Freelancer) simplifies life. Watch demonstration of YAML-based design. Simple, elegant, cross-browser compliant. And flexible.

Tag It · · ·   Digg It

Comments (0) 30-06-2008

AJAX Generated Nofollow

As you can see I've got a page with tons of links. Recently I've decided to insert 'nofollow' tag into every link on that page. As there are over 1500 useful for search engine optimizer resources inserting by hand would be immence waste of time. So I've decided to use magic of AJAX. That looked impressive and realistic. The idea was simple - to find div by id containing tag and to add rel='nofollow'. Mechanism for this purpose looked like this:

  • var links = document.getElementById(id).getElementsByTagName('a');
  • for (var i=0; i
  • links[i].rel = "nofollow"
  • }

Dreams, dreams... The end of this story is negative, because searchbot can't run AJAX :(

Tag It · ·   Digg It

Comments (0) 17-01-2008

CrossBrowser Overflow(x)

Googling around to find crossbrowser overflow(x) decision brought to me a simple and elegant way to make nice page. I've checked it in IE6, IE7, FF2. It looks like overflow(x) really works. Big thanks to the author! Please, note this crossbrowser overflow(x) method is not valid, gives mistakes, in case if you are a CSS Purist.

Tag It · ·   Digg It

Comments (0) 26-12-2007

Centering Div

Very nice, crossbrowser method for div centering.
Just use this css:

#centeringDiv {
  position:absolute;
  top: 50%;
  left: 50%;
  width:20em; /* width value */
  height:20em; /* height value */
  margin-top: -10em; /* minus 1/2 of your height */
  margin-left: -10em; /* minus 1/2 of your width */
}

Another smart centering option using float and clear.

Tag It · ·   Digg It

Comments (0) 31-10-2007

<< First < Previous [1 / 3] Next > Last >>