Website Suggestions

Post questions, comments, and suggestions about Runouw.com here.

Re: Website Suggestions

Postby PositronWildhawk » November 13th, 2015, 5:17 pm

Well I can use the sig code

Image
Click the above image for my Twitter

other sigs: show
ImageImageImage
Kudos to OJ for the last one
open this: show
You opened the spoiler now what will happen ahhhh

this section will be edited when I figure out what to do with it
sittin on a cornflake, waiting for the van to come~
User avatar
PositronWildhawk
As Ninja As Myst

 
Posts: 119
Joined: September 23rd, 2015, 10:30 pm
Location: AaæeE

Thumbs Up given: 50 times
Thumbs Up received: 5 times

Re: Website Suggestions

Postby Doram » November 13th, 2015, 6:05 pm

Well, no. Sig has worked for me before too, but this time it was glitching out in the presence of all those other tags for some reason, so I'm going to have to figure THAT out. And, yes, I forgot [quote].

Well, it's not as simple as a div, but, yes, you have that level of control over the border with fulltable.
"Quoted from BBCodes Thread": show
Tables just got an upgrade!



For all of you budding web designers out there that are frustrated by the limitations of your everyday BBCode, I present FullTables. Coded with about 80% of the full CSS capabilities of tables, You can decorate these beauties to the hilt, now.

It's a beast of a BBCode, with a ton of parameters, but I'll go over them, and show you an example...

The two new BBCodes are fulltable and fulltd (tr really didn't need any upgrades, and would only have confused things more). Both are similar to what you have seen in HTML and CSS, but with a few twists brought about by the maze of php and JavaScript that your post has to wander through before it makes it to the screen. Each parameter has certain data types that it has to contain, to maintain the security of the forums (thus the limitations of BBCode). I have worked around some of those limitations, but not all (thus the 80%).

Left Test Center Test Right Test

Code: Select all
[fulltable width=500 width_type=pixels height=0 height_type=none text_color=yellow bg_color=blue bg_img=http://runouw.com/forums/images/spacer.gif align=center border_size=5 border_color=#ffaaaa border_style=outset][tr][fulltd width=0 width_type=none height=0 height_type=none text_color=white bg_color=black bg_img=http://runouw.com/forums/images/spacer.gif align=right border_size=3 border_color=red border_style=dashed padding=3px 3px 7px]Left Test[/fulltd][fulltd width=0 width_type=none height=0 height_type=none text_color=black bg_color=#aaaa44 bg_img=http://runouw.com/forums/images/spacer.gif align=center border_size=3 border_color=white border_style=double padding=5px]Center Test[/fulltd][fulltd width=0 width_type=none height=0 height_type=none text_color=purple bg_color=green bg_img=http://runouw.com/forums/images/spacer.gif align=left border_size=3 border_color=white border_style=inset padding=10px 3px 0px]Right Test[/fulltd][/tr][/fulltable]


Have fun.

Things to keep in mind:
  • There must be something in every parameter, thus the width=0 width_type=none (meaning width unspecified - resulting code drops the declaration)
  • There must be a link in the background image, thus "http://runouw.com/forums/images/spacer.gif" if you don't want to set an image.
  • width_type and height_type can take "pixels", "percent", and "em" However, border_size is only a number, and is specified in pixels.
  • border_type can take any valid CSS2 border type: "dashed" "groove" "solid" "double" "inset" "outset" etc.
  • All features can be set at the table level (fulltable) and at the table cell level (fulltd).
  • Can set both bg color and bg image - again, for table overall, and per cell.
  • It has advanced code for properly aligning the overall table ("align=center" broken in HTML, so puts "style=margin:5px auto;" there instead - td simply uses text-align CSS)
  • Padding is locked for table (fulltable) elements at 3px, but padding can be set for cell (fulltd) elements, and can follow the full CSS Box model with the exception that it cannot be set in percent (since the % symbol makes the BBCode fail, and is the required symbole per CSS rules - so, px and em are Ok, and you can set them all in one, or split top, right, bottom, and left up...)
    If there is only one value, it applies to all sides. If there are two values, the top and bottom margins are set to the first value and the right and left margins are set to the second. If there are three values, the top is set to the first value, the left and right are set to the second, and the bottom is set to the third. If there are four values, they apply to the top, right, bottom, and left, respectively.


Full Breakdown of fulltd (fulltable is just missing the padding parameter)
  • width=700
    • Number only, usual max post width is 700px
  • width_type=pixels
    • Words only, can take "pixels" "percent" and "em"
  • height=0
    • Same as Width - Number only. For both width and height, if you are not going to set it, put a zero there.
  • height_type=none
    • Same as Width - Words only, can take "pixels" "percent" and "em" For both width and height, if you are not going to set it, put "none" there.
  • text_color=white
    • Can take any CSS authorized entry - named color, hex RGB (#FF8800), etc.
  • bg_color=black
    • Can take any CSS authorized entry - named color, hex RGB (#FF8800), etc.
  • bg_img=http://runouw.com/forums/images/spacer.gif
    • MUST be set. If you are not going to use it, set it to an empty spacer, as I have done here.
  • align=right
    • takes "left" "center" and "right"
  • border_size=3
    • Number only. Automatically in pixels.
  • border_color=red
    • Can take any CSS authorized entry - named color, hex RGB (#FF8800), etc.
  • border_style=inset
    • Can take any CSS authorized entry - "dashed" "dotted" "groove" "ridge" "solid" "double" "inset" and "outset"
  • padding=3px 3px 7px
    • Can take any CSS authorized entry - all unit types, with the exception of percentage (do not forget that you DO have to put the unit type here, as versus above), separate sides per the box model
Martin Luther King Jr. wrote:Man must evolve, for all human conflict, a method which rejects revenge, aggression, and retaliation.
The foundation of such a method is love.
More words from a wise man on activism, terrorism, violence, and peace
User avatar
Doram
Global Moderator

 
Posts: 1524
Joined: February 22nd, 2010, 7:37 pm
Location: Wherever I'm needed.

Cookie
l.m: "For fixing the stuff I break, and for being the best Forum Dad. XOXO <3"

Thumbs Up given: 153 times
Thumbs Up received: 471 times

Re: Website Suggestions

Postby PositronWildhawk » November 13th, 2015, 6:09 pm

Hey Doram, did you see my HTML border box?
Code: Select all
<div style="width:200px;height:100px;padding:10px;border:10px solid yellowgreen;">

Box with a border

</div>
Image
Click the above image for my Twitter

other sigs: show
ImageImageImage
Kudos to OJ for the last one
open this: show
You opened the spoiler now what will happen ahhhh

this section will be edited when I figure out what to do with it
sittin on a cornflake, waiting for the van to come~
User avatar
PositronWildhawk
As Ninja As Myst

 
Posts: 119
Joined: September 23rd, 2015, 10:30 pm
Location: AaæeE

Thumbs Up given: 50 times
Thumbs Up received: 5 times

Re: Website Suggestions

Postby Doram » November 13th, 2015, 6:12 pm

Yes.

Box with a border
Code: Select all
[fulltable width=200 width_type=pixels height=100 height_type=pixels text_color=yellow bg_color=blue bg_img=http://runouw.com/forums/images/spacer.gif align=center border_size=10 border_color=yellowgreen border_style=solid][tr][td]Box with a border[/td][/tr][/fulltable]
Martin Luther King Jr. wrote:Man must evolve, for all human conflict, a method which rejects revenge, aggression, and retaliation.
The foundation of such a method is love.
More words from a wise man on activism, terrorism, violence, and peace
User avatar
Doram
Global Moderator

 
Posts: 1524
Joined: February 22nd, 2010, 7:37 pm
Location: Wherever I'm needed.

Cookie
l.m: "For fixing the stuff I break, and for being the best Forum Dad. XOXO <3"

Thumbs Up given: 153 times
Thumbs Up received: 471 times

Re: Website Suggestions

Postby PositronWildhawk » November 13th, 2015, 6:17 pm

I don't think I can use Fulltable, sorry. It's too complicated for me.
Image
Click the above image for my Twitter

other sigs: show
ImageImageImage
Kudos to OJ for the last one
open this: show
You opened the spoiler now what will happen ahhhh

this section will be edited when I figure out what to do with it
sittin on a cornflake, waiting for the van to come~
User avatar
PositronWildhawk
As Ninja As Myst

 
Posts: 119
Joined: September 23rd, 2015, 10:30 pm
Location: AaæeE

Thumbs Up given: 50 times
Thumbs Up received: 5 times

Re: Website Suggestions

Postby Kimonio » November 13th, 2015, 10:58 pm

I'm kind of curious what sets it off from the others. What is it used for? Why will it be used? Who would use it?

All three criteria must be answered, preferably detailed or summarized. The bbcode has to be something the majority would use aside from other options, otherwise it's just a waste of bytes and takes up space in the script.

I mean, I personally don't see a use for left-slant. A quick search even confirms as far back as '08 that a custom font type is needed to be used, which would mean plugging the metatag in to call the font over, which would strain the server load, either by a margin or a wedge.

If you're talking along the lines of something like this for the bordered text, this would be a table, but a table that increases in width and height in accordance to the paragraph itself. I personally see that as an eyesore on web pages, because you'll have things such as this:

Image

That^ in itself is a web design no no. It's overly abstract, and very unorganized. That's why I don't like the idea.

Also, fulltable is literally the html you put. BBCode calls from a script that plugs html into a post.
Image

User avatar
Kimonio
Honorary Member

 
Posts: 2114
Joined: September 27th, 2009, 11:06 am
Location: In the absence of nothing

Thumbs Up given: 62 times
Thumbs Up received: 134 times

Re: Website Suggestions

Postby Oranjui » November 22nd, 2015, 12:01 pm

Maybe add a shadowlink to all of the various Rules threads in the Rules subforum?

Name Changes
Art Rules
Rules on commenting in the portal
Rules topic template: Level Posting Rules and Guides (might want to clean up the formatting of the post though) [edit: oops, this is already there]

Might be missing some.

Also, are we ever going to get rid of Flash Player Showcase and merge it with Gaming?
User avatar
Oranjui
Minister of Oerhaos

 
Posts: 1914
Joined: June 26th, 2010, 6:49 am

Runolympics 2015 MVP

Thumbs Up given: 388 times
Thumbs Up received: 188 times

Re: Website Suggestions

Postby Doram » November 22nd, 2015, 4:43 pm

That sounds like an excellent idea...
Martin Luther King Jr. wrote:Man must evolve, for all human conflict, a method which rejects revenge, aggression, and retaliation.
The foundation of such a method is love.
More words from a wise man on activism, terrorism, violence, and peace
User avatar
Doram
Global Moderator

 
Posts: 1524
Joined: February 22nd, 2010, 7:37 pm
Location: Wherever I'm needed.

Cookie
l.m: "For fixing the stuff I break, and for being the best Forum Dad. XOXO <3"

Thumbs Up given: 153 times
Thumbs Up received: 471 times

Re: Website Suggestions

Postby Supershroom » November 28th, 2015, 5:51 am

Is it actually possible to remove the "Notify me on new messages" option in the "Board preferences" section of the UCP? I don't see any point in turning it off, and it could just be the cause for newbies not noticing messages from the staff on e.g. having posted a level somewhere else than the LDP.

EDIT: The way I remember it, this option is default "Yes" after registering, so you have to know already what a PM is in order to turn this off ... and yes I'd second making them a bit more shiny.
Last edited by Supershroom on November 28th, 2015, 6:53 am, edited 1 time in total.
Image

Thank you, FF.

Nan's sig! From the previous Secret Santa event!: show
Rating standards: show
1 star: (0 - 5.75 in LDC) These levels need a lot of work. They're totally un-elaborated, and/or inherently flawed due to things like cutoff or enemy spam, or they're untested and there are too many bugs gameplay-wise, in short: Many many things went wrong in such a level.

2 stars: (6 - 9.75) These levels are not terrible, but poor. They're too short, lack scenery or they have errors and/or bugs but it's still barely enjoyable. Again, spend more effort and try to do better. (if it's your first level that I rate two stars, it's not bad. There's a long way you can still go)

3 stars: (10 - 12.75) These levels are about mediocre. They may be still a little bit short, the gameplay is fine but not very original and graphics are also solid, but not breath-taking. Try to keep improving!

4 stars: (13 - 15) These levels are nice, but not the best. Effort has been put into them, there can some professionality be seen in gameplay and graphics, they're a nice experience to play, but there are still things you can do to make it even better. Try to go the extra mile!

5 stars: (15.25 - 20) These are really great levels, those which, as said, I would give more than 15 in an LDC. These suffice many high requirements, and it already goes into subtleties if you want to make them better. These levels are successful all around. Bravo.

These are just general principles I try to follow when rating. Sometimes I don't leave a further comment when rating, most times I do, if you have questions about it, feel free to ask further.
Look at this!: show
My total SM63 level experience: 2803 levels.
Total coins collected in these: 306800

The WITBLO11 Tribute


A showcase of the 25 best levels of 2011, including such fantastic levels as Niveau Victorieux Galaxy, Plastic Beach, Dimension Infinity, Realm of the Heavens/Parallel Spires, and more!

My Level Collection: http://runouw.com/forums/viewtopic.php?f=25&t=47186

Other Important Links:
Last Legacy Level Designer tutorial
Eternal SM63 Medal Table
Eternal SM63 Score Table (all LDC scores available)
Top 10 Lists for LDC's (highest averages in a single judging criterion)
Runouw Votes Eternal Table
User avatar
Supershroom
Our local SM63 Spielberg

 
Posts: 1802
Joined: June 21st, 2014, 5:22 am
Location: Filmstudio for SM63. Sometimes also LL.

Runouw Votes Winner
New Years 2016: Best Level Winner (Ride Through The Mines)

Thumbs Up given: 244 times
Thumbs Up received: 126 times

Re: Website Suggestions

Postby l.m » November 28th, 2015, 5:59 am

Supershroom wrote:Is it actually possible to remove the "Notify me on new messages" option in the "Board preferences" section of the UCP? I don't see any point in turning it off, and it could just be the cause for newbies not noticing messages from the staff on e.g. having posted a level somewhere else than the LDP.


I don't think it would help on anything. There's a big chance newbies don't know what even a PM is. I suggest instead a way of making the PMs stand out more - but then again that belongs in the Forum Header Re-arrange topic.
Image
l.m
all light absorbed

 
Posts: 1685
Joined: July 14th, 2011, 12:09 pm
Location: in the shadows i will hide

Razzian Fighter

Thumbs Up given: 136 times
Thumbs Up received: 148 times

PreviousNext

Return to Site Discussion