Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

css for s?

hi, I literally just made this account because Im finding nothing on this in this forum or in the old google groups.....
is there a way to change how a <<button>> looks so that it can go from a gray box to, say, a blue one with a specific font? like, is there a class for it that I can add to my stylesheet? because this (see attached) does not fit the look of my game. if there is an alternative to <<button>> that is easier to edit, that would be great also

Comments

  • You could try something like the following CSS, changing colours and font as you wish.

    #passages button {
    background-color: blue;
    border-color: blue;
    color: white;
    font-family: monospace;
    }
  • works perfect! thank you!
Sign In or Register to comment.