A: 

have you tried,

var link = $('<link>');
link.attr({
   'rel':'stylesheet',
   'media':'screen',
   'type':'text/css',
   'href':'colorbox/colorbox-images.css'
});
jQuery('head').append(link);
Reigel
Curiously, the same thing happens with that code: some bits of the CSS are added, but no content is visible.
Neurofluxation
hmmm... weird,... ahmm have you tried doing `jQuery.fn.colorbox({inline:false, href:'boxes/add-comment.html'});` before `jQuery('head').append(link);` ?
Reigel
Same result again :'( I'm lost!
Neurofluxation
+1  A: 

Turns out that it was a Float problem in the CSS, something didn't want to play ball.

Neurofluxation