Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Options

how do you rearrange comment form

edited July 2005 in Vanilla 1.0 Help
Being a PHP novice... how can i rearrange the comment and new discussion form have the submit button be right after the text box and the "Format comments as" radio buttons be last? (i.e. switch the order of the two) This makes keyboard TAB button much more efficient, especially if you've set up your default Format option in forum prefs. you only tab once to the submit and hit enter.

Comments

  • Options
    jonezyjonezy New
    edited July 2005
    you would do it with the css...

    find these classes in the css

    Button SubmitButton

    and add float:right; to the definitions.
  • Options
    You don't need to move the order, just apply the "tabindex" attribute liberally
  • Options
    lechlech Chicagoland
    I think either you or mark would need to either A) define a tab order, or B) physically switch those around.
  • Options
    oh oh i guess i should have read the post :/
  • Options
    domdom
    edited July 2005
    jonezy, I think you misunderstood the reason behind the request...

    Gah, concurrent posting == trouble. Someone write a "checkout" extension to lock posts for 60 seconds... <_<
  • Options
    lol @ me and you
  • Options
    lechlech Chicagoland
    i r smrt
  • Options
    lech r teh c00l
  • Options
    Screwing with the default tab order is bad usability practice, mates :)
  • Options
    Screwing with tabindex is not only not bad usability practice, it's recommended usability practice! This is provided it is done in a sensible, expected way, and I agree that in this case you could argue that it wouldn't be beneficial.
  • Options
    Well, if your markup is well-formed, the default tab order should be sensible. But yes, sometimes you need to make small adjustments.

    But still, as you say, changing it to jump from the text box over the format comments radio buttons to the submit button is bad, because it's unexpected behavior to the user. Most users expect the tabs to go left to right, top to bottom.
  • Options
    Yeah, but what they're saying (i think) is just to move the add button to above the format options - so it would be the next thing to move to. This makes for sensible practice, but i suppose could result in...unusual...aesthetics.
  • Options
    how about displaying the format options as select box instead of radio buttons? i think that would add more usability..because you can hit it more easy and dont have to move the mouse that much to be able to choose between all options. but of course you wouldnt be able to see all options before klicking on the select box...that might substract a sense of usability...so it might be no better solution... actually i thought about the same when i saw the search section of the vanilla forum software. BUT you could add the options for formatting to the right side of the textarea... and under it you could add a sort of ajax preview...shouldnt be that hard to implement i think. that would rock :)
  • Options
    minisweeper said: Yeah, but what they're saying (i think) is just to move the add button to above the format options - so it would be the next thing to move to.
    That's not what some were advocating:
    You don't need to move the order, just apply the “tabindex” attribute liberally
  • Options
    oh.. i didnt know what tabindex did. pardon me.
  • Options
    edited July 2005
    NP :) EDIT: Douchebag... ;)
This discussion has been closed.