Database error: [Expression #1 of ORDER BY clause is not in GROUP BY clause and contains nonaggregated column 'jenv_jenvetterli.wp_posts.post_date' which is not functionally dependent on columns in GROUP BY clause; this is incompatible with sql_mode=only_full_group_by]
SELECT DISTINCT YEAR(post_date) AS `year`, MONTH(post_date) AS `month`, count(ID) as posts FROM wp_posts WHERE post_date < '2025-01-15 19:35:59' AND post_status = 'publish' GROUP BY YEAR(post_date), MONTH(post_date) ORDER BY post_date DESC

Clicks & Notes

03 February 2005

Tips for Writing CSS

Position Is Everything - How To write Efficient CSS

One of the touted benefits of CSS is that it reduces total page weight, and thus download time, both at first page load, and even more on subsequent loads due to style sheet caching. This is true, but often a sizable fraction of the first load savings is lost because of highly redundant CSS code.

(via xBlog)

mezzoblue - Redundancy vs. Dependency

CSS forces you to make a choice in your coding techniques, a choice that becomes more obvious the larger a site grows. As the amount of variance between different templates increases, you can go in one of two directions: you can either code for redundancy, or code for dependency.

⇒ Filed under:  by jen @ 8:25 pm

© Jennifer Vetterli, 2005