I'm not quite sure what I'm doing wrong.
section:not(#2) { font-size:33px; }
Update:
Forgot about not using numbers for the example!
Silly me, I was doing something like this and forgot the #
before current
. Pesky syntax errors.
current = $(this).attr('id');
$('section:not(#'+current+')').css('height',titleHeight);