currently working on the stylesheets. yes, the way phpBB has all 17 of them, they are easy to read. but what a mess with one element that overrides another over and over which makes everything difficult to make changes.
then there's to minify or not...
i'm choosing to not minify anything. reason is that yes, file size is smaller, pages load faster, and bandwidth is lower. in this day and age, none of that really matters when a page will load in less than 1 second making all the minification work just to gain milliseconds. also, minified stuff is just harder to work with as you have to make a change and then compile it and test it, when just using normal css, you make a change and test... done. i read somewhere here that it's spending dollars just to make cents to minify.
by simply removing all of the comments from one of the css files i have reduced it's file size from just under 8KB to under 3KB. that alone is a huge difference even when what i'm talking about is very small
i'm putting everything into 1 file, minus the print.css, plupload.css, etc., which are only loaded when needed, to reduce the calls for files by a lot. yes, 1 larger file versus many smaller ones will load faster in my opinion.
i have a long way to go to get this done now
edit: just a quick example of things in 1 file overriding something in another...
in the first css file called from
stylesheet.css
, the stylesheet named
normalize.css
under
h1
margin
is set to this
the second stylesheet called
base.css
, overrides this already with
Code: Select all
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
p,
pre { margin: 0 }
that is just 1 example from the first 2 files called. i'd say it's pretty messy to say the least when it's done this way