Andrés Jaimes

design, photography & web development

More Control to Horizontal Lists; Revisited

by Timo Rautiainen This article is related to my original writing More Control to Horizontal Lists (Shrinking Gaps). Please review the article if you want to know more about the topic. Was browsing the magical internet for answer to “Feature” that Internet Explorer 6 and 7 has and stumbled upon an another article related to [...]

Desprotegido…

No fue hasta que un señor de cincuenta y tantos años, cuyo padre recientemente falleció, que entendí la importancia de sentirnos cerca de nuestros padres, pues me dijo “ahora sí me siento desprotegido”…

Coding An HTML 5 Layout From Scratch

HTML5 and CSS3 have just arrived (kinda), and with them a whole new battle for the ‘best markup’ trophy has begun. Truth to be told, all these technologies are mere tools waiting for a skilled developer to work on the right project. As developers we shouldn’t get into pointless discussions of which markup is the best. They all [...]

CSS – Attribute selectors

by MaxDesign What are attributes? All HTML elements can have associated properties, called attributes. These attributes generally have values. Any number of attribute/value pairs can be used in an element’s tag – as long as they are separated by spaces. They may appear in any order. Attribute selectors Attribute selectors are used to select elements [...]

An easy way to do a CSS Horizontal Menu

by Andrés Jaimes Here it is. Start with a conventional item list like the following: <ul class=”hmenu”>     <li><a href=”">Option 1</a></li>     <li><a href=”">Option 2</a></li>     <li><a href=”">Option 3</a></li>     <li><a href=”">Option 4</a></li>     <li><a href=”">Option 5</a></li> </ul> Don’t forget to add the class parameter to the ul tag – that will help us do [...]

Create a DNS zone file

by FreeBSD.org An example master zone file for example.org (existing within /etc/namedb/master/example.org) is as follows: $TTL 3600 ; 1 hour default TTL example.org. IN SOA ns1.example.org. admin.example.org. ( 2006051501 ; Serial 10800 ; Refresh 3600 ; Retry 604800 ; Expire 300 ; Negative Response TTL ) ; DNS Servers IN NS ns1.example.org. IN NS ns2.example.org. [...]