Did the font used for CODE blocks change recently? The font is way too big. You can't see enough code at once. Is there any way to change back to the previous font or a smaller version of the new font?
This is something that Bump is already working on. The default font for code blocks is the Parallax font, so that the special characters will show up in Spin code. But the font size is too large, or the code box is too small. I'm sure we'll see a fix in short order.
Thanks for the explanation. I vote for making the font smaller rather than the text box bigger. I like to be able to see as much code on my screen at a time as possible and a large font gets in the way of that. It's especially bad because wide lines can't be seen without horizontal scrolling or wrapping both of which are ugly.
Is there any chance you could switch the forums back to the font we were using before while you work to resolve this problem?
Yeah I can bump it back, it's a fun problem. 12pt is the Parallax font's optimal display size, to get all the features to play nicely, however it is also freaky big. I've put it back to its default size for bbccode_code block text.
Still checking other things to make all these features 'sing'... do features have vocal chords? I'm not sure anymore.
Whoa found another interesting issue to figure out, sorry for making a note of it here to myself... After replying to a thread, hitting reply to thread again (on the same thread) skips quickreply and goes straight to advanced reply.
Anyway, it appears what I was told may be wrong; I think the Parallax font looks ok small... but difficult to read easily.
Whoa found another interesting issue to figure out, sorry for making a note of it here to myself... After replying to a thread, hitting reply to thread again (on the same thread) skips quickreply and goes straight to advanced reply.
Anyway, it appears what I was told may be wrong; I think the Parallax font looks ok small... but difficult to read easily.
Yeah, that's how we ended up working it on the parallaxsemiconductor site before finally deciding upon 'going big'; it seems to work on the forums just fine though.
Heh, did quoting code always make it look all jagged? That's easy to fix too.
Yes, that. The font-style for quote_container is italics which makes all the diagrams in the code get all freaky-deaky, but if I force it all normal than any intentional styling could be lost.
Ah, I see what you mean. I don't really see that as a big problem. At least I've never quoted an entire code block. IMO, doing so is an abuse of the quote tags.
BTW, if you can do it, boldface type in a code block should have letter-spacing set to -1px. The reason is that the Parallax typeface does not come with a bold font that preserves character width, but shifts each normal character right and overlays it with itself to make it look fatter, and that increases the character width by one pixel. The -1px adjustment for bold characters undoes this. Here's an example of the problem:
xxxxxxx aligned
xxxxxxx aligned
[b]xxxxxxx[/b] not aligned
Comments
-Phil
Is there any chance you could switch the forums back to the font we were using before while you work to resolve this problem?
Thanks,
David
Still checking other things to make all these features 'sing'... do features have vocal chords? I'm not sure anymore.
Is there any way to add a new tag to the forum software? Could you use [PARALLAX] for code that requires the Parallax font?
Anyway, it appears what I was told may be wrong; I think the Parallax font looks ok small... but difficult to read easily.
another addition for personal reference since I'm making corrections directly rather than on my test-site... bad Bump.
That's a way easy suggestion, I could play with that also.
Did you (of all people) ever really doubt that?
http://www.youtube.com/watch?v=QH2-TGUlwu4
-Phil
That size is definitely better.
I wrestled with this issue for the Spin autodocumenter. I settled on this for my pre CSS:
font: 10pt parallax,courier,monospaced;
line-height: 97%;
}
This is what it looks like:
Below 10 points, the font starts to look pretty crappy.
-Phil
Heh, did quoting code always make it look all jagged? That's easy to fix too.
-Phil
Yes, that. The font-style for quote_container is italics which makes all the diagrams in the code get all freaky-deaky, but if I force it all normal than any intentional styling could be lost.
BTW, if you can do it, boldface type in a code block should have letter-spacing set to -1px. The reason is that the Parallax typeface does not come with a bold font that preserves character width, but shifts each normal character right and overlays it with itself to make it look fatter, and that increases the character width by one pixel. The -1px adjustment for bold characters undoes this. Here's an example of the problem:
-Phil
Don't make me look silly vbulletin...
-Phil