Hi I was wondering would you consider it better to have all my CSS in one external file rather than split up to 2 or 3 external files. The same goes for my Javascript. I just think my head looks a bit of a mess so i'm considering shoving everything in one CSS file and one Javascript file.
For CSS, make different styleseehts for different media: one for computer screens, and one for print.You can even make one for phones, or - for blind people - Aural stylesheets.
So what if your head looks a bit long? Who do you expect is going to be looking at your code? As long as it's indented fine and you know what each bit is it doesn't really matter, unless of course it's purpose is so that it's easy for multiple people to understand it. I usually have it in multiple files, adding them to the page(s) they are needed on only, saves the download of a document that isn't needed for a start.