This is how a Jobs & Careers page of a company website is supposed to be like. Watch and learn.
Tag: web design
Genericons— a free, GPL, flexible icon font for blogs!
Infinite scrolling in WordPress themes
PHP.net design updated
It’s been a long time pending, but finally, PHP.net updated the design of the website. The new one doesn’t look anymore that it was done in 1974. It’s fresh, nice, yet keeps somewhat of the same familiar feeling of the old one. The search box looks to be updated as well. I can’t say for sure, since I have a custom search on all my browsers to direct any search query that starts with “php” to php.net. But it looks like now when you search, the completion will tell you what the dropdown results are – functions, books, etc.
Child and Sibling Selectors in CSS
Do you know what is the difference between these two?
ul li { margin: 0 0 5px 0; } ul > li { margin: 0 0 5px 0; }
If not, you should read this article. Very simple and straightforward explanation of a few CSS selectors.