Spudinski Posted May 18, 2010 Posted May 18, 2010 Well, I like to go trough posts and read the scripts people post - it's an annoying habit. But there's one thing wrong with the whole thing; the code boxes are to large. They take up very much space and I have to scroll forever to get anywhere. I suggest setting the code boxes to a height of 500 pixels, it would render pages much more visually better. My only current solution is javascript, modifying the stylesheet rules to acquire the result I want. If anyone want a quick solution too: make a button with the url as: javascript:document.styleSheets[1].cssRules[474].style.cssText = "max-height:500px;overflow-y:scroll;";void(0); That small little piece of script will set the height of any code boxes on the page to 500 pixels, AND... add a handy little scroll-bar. Quote
Djkanna Posted May 18, 2010 Posted May 18, 2010 I agree on the subject of code boxes I do like one feature of SMF which would be great if you can get it for WBB; using php tags [.php] you can use it just to give it the proper syntax rather than a full code box. Example: The PHP tags on here : echo 'Hola'; SMF's version: echo 'Hola'; I like that feature. Quote
Spudinski Posted May 18, 2010 Author Posted May 18, 2010 I wish SMF would be brought back. But yea, the PHP tags should also come into use. Quote
Djkanna Posted May 19, 2010 Posted May 19, 2010 I don't wish SMF would be brought back as I really do like the extreme power and the low footprint of WBB. However I do miss some SMF things. Quote
Spudinski Posted May 19, 2010 Author Posted May 19, 2010 What extreme power? The moderation panel is a mess, it takes 5 clicks to move a thread. The posts also doesn't delete immediately. Anyways, I'm just suggesting the code boxes for now. Quote
Djkanna Posted May 19, 2010 Posted May 19, 2010 Yes it does take a while to move a thread but you don't need to access moderation panel to do it. Quote
Spudinski Posted May 19, 2010 Author Posted May 19, 2010 Nope, but have you been to the panel lately? 219 .... So yea. Quote
Spudinski Posted May 19, 2010 Author Posted May 19, 2010 Haha, still we can not delete it or anything. :P Quote
Djkanna Posted May 20, 2010 Posted May 20, 2010 You can delete reports etc and everything that you delete gets fully deleted once a week I think (not entirely sure on the time frame) Quote
Spudinski Posted May 20, 2010 Author Posted May 20, 2010 It's once a month, but if you do so that post is also deleted. :\ Quote
Zero-Affect Posted May 21, 2010 Posted May 21, 2010 They do have other boxes also you know... [c]--code--[/c][js]--code--[/js][java]--code--[/java] [redbox]noobles![/redbox][infobox]noobles![/infobox]... Quote
Djkanna Posted May 21, 2010 Posted May 21, 2010 They do have other boxes also you know... [c]--code--[/c][js]--code--[/js][java]--code--[/java] [redbox]noobles![/redbox][infobox]noobles![/infobox]... Forgot One [warnbox]Noobles![/warnbox] [mysql]SQL here...[/mysql] Okay that's Two! Quote
Spudinski Posted May 23, 2010 Author Posted May 23, 2010 People who try to act like smart pants... :P Look at the CSS stylesheet for each of those, they don't have a height property. Now, try to prove me wrong. ;) Quote
Zeggy Posted May 23, 2010 Posted May 23, 2010 ...is this a browser thing? If the css has no height attribute for it, the smart thing for a browser to do is to fit the box to the size of its contents. All the code boxes I see are just large enough to contain the code within it, ie. the code box in your first post is like 50 pixels high. Why would you set it to 500px? Quote
Spudinski Posted May 23, 2010 Author Posted May 23, 2010 Browsers default height property for div element is null, this is equal to 100%. All of it's contents are displayed. Also, I wonder if you ever hear about the "max-height" property? It's CSS 2 if I'm not wrong. This means... if the height is more than 500 pixels, it's cut off. And to my ingenious thinking, I added an overflow property. The overflow property defines what should be done with the contents that are cut off - I set it to scroll. Quote
Zeggy Posted May 23, 2010 Posted May 23, 2010 I'm very familiar with css, thanks. Sorry I misunderstood, your first post isn't very accurate. The code boxes are not 'too large', they are 'just the right size for the code'. What you want to do is reduce the box size, not (as I assumed) correct faulty css. You suggested setting code boxes to 500px, not putting a limit on the height. I didn't look at the code you included, but now that I have, why would you only want overflow scrolling vertically? Why not have it horizontally as well, otherwise you'd be scrolling the entire screen as opposed to just the code box. Quote
Spudinski Posted May 23, 2010 Author Posted May 23, 2010 It's already set to scroll vertically by the stylesheet. Quote
Zero-Affect Posted May 24, 2010 Posted May 24, 2010 Actually where it says for example "Source code", "Java source code" and so on they could remove it and add a background image with the symbols/icons of the code type is a good example of PHP Quote
Joshua Posted May 26, 2010 Posted May 26, 2010 As added..security? I guess.... Moderators aren't SET to remove posts immediately If you have seen WBB from the admins point of view you can remove posts immediately They can also change the access to allow moderators to be able to remove it immediately, it's just default set not to ;-) it's also quite simple to adjust the code boxes via the admin panel as well. Quote
Guest Drizzle Posted June 1, 2010 Posted June 1, 2010 Why not just set it to a reasonable height, 500px is fine, then use overflow:auto; or overflow:scroll; or w/e to scroll the boxes. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.