By Cesar O.
Fonts are one of the biggest troubles for web designers to date. For ages we have been either using images or scripts to work around this issue. If you want to use a fancy font, you have only a couple of alternatives: you could use @font-face, you could just use images (the most common way to do it), or you could use a rendering engine like SIFR or cufon. This blog will explain roughly what these 2 alternatives are, some pros and cons and just an overview of how they work. If you want to learn in depth what they can do at its fullest I recommend going to http://wiki.novemberborn.net/sifr/ for SIFR3 and http://cufon.shoqolate.com/generate/ for cufon.
SIFR
This techniq...
By Cesar O.
This is a topic that, as a web designer, I don’t like a whole lot, because compatibility for IE6 in websites costs time, effort and money; but this is not the main problem, the main problem is that you can spend more time (and I have seen this several times) making your site work for IE6 than actually creating the whole website; so, How can you minimize this? How can you reduce the cost of compatibility with IE6? There are some simple steps you can take to try and ensure compatibility and/or reduce the time you spend making it work for IE6.
1- From conception, from the first line of html you start typing, remember that this is supposed to work for IE6. What I mean by ...
By Cesar Olivas
When you start creating a website, you have to make some choices before you start. Some of these choices are using HTML or XHTML, Tables or Divs, Floats or Position, Inline Styling, etc. In this post I will give you some explanation of all the elements that you usually need to choose from.
DoctypeEvery website needs to have a doctype declared, failing to do so may result on your page rendered ineffectively. The best way is declaring a doctype like xhtml transitional, strict or html 4.01 and help meet standard requirements. As a personal experience, this has been an issue in SharePoint implementations, since default masterpages do not include a doctype. In a customizatio...
By Cesar Olivas
CSS has been around for some time now, since 1996, and it completely changed the way people used to make websites, for good. First came CSS1, with some support for fonts, color text, backgrounds, spacing between words, alignment, margins, paddings and some other attributes; it looked really good for its time.
Then same CSS level 2 in 1998, which introduced some powerful features like positioning, z-index, media types. Then came the revision we use right now, CSS level 2 revision 1(CSS2.1) which fixed some errors in CSS2 and removed some unsupported features.
But the web is evolving, turning into a more interactive, user-centered design; the technologies were bound to ev...