The world is currently online!


Welcome to Emps-World!

Register now to gain access to all of our forum features. Once registered and logged in, you will be able to create topics, post replies, send private messages, manage your profile, chat with other players in the shoutbox and much more. Once you sign in, this message will disappear.



Pages: 1
0 Members and 1 Guest are viewing this topic.

Offline Mr Money Bags

  • *
  • 2
  • Liked: 1 times
  • +0/-0
    • View Profile
Change needed... in the register overlay
« on: January 06, 2015, 10:41:56 pm »
Note: talking about: http://emps-world.net/register

Yeah, I created this account assuming that the max chars where 12. its set to 13, im here to suggest that you change it to 12.

Code: [Select]
<input type="text" id="rUser" maxlength="13">
Should be,
Code: [Select]
<input type="text" id="rUser" maxlength="12">
Sincerely,

Austen
« Last Edit: January 06, 2015, 10:45:26 pm by Mr Money Bags »
The following users liked this post: Beer Money

Offline Mr Money Bags

  • *
  • 2
  • Liked: 1 times
  • +0/-0
    • View Profile
Re: Change needed... in the register overlay
« Reply #1 on: January 06, 2015, 10:48:17 pm »
Also now that im looking at it I also suggest adding a dim to the background.

You need to add something like this to your ccs,
Quote
background-color: rgba(0,0,0,0.5);

Offline Thomy

  • *
  • 3555
  • Liked: 3326 times
  • +5/-0
    • View Profile
Re: Change needed... in the register overlay
« Reply #2 on: January 07, 2015, 10:36:10 am »
Thanks for the info. Max username length is 12 now.

Why would we want a dim to the background? Also what background? All popup boxes have the background-color you specified already.

Offline Eliminator

  • *
  • 343
  • Liked: 123 times
  • +0/-0
  • Everybody believes they are the good guy.
    • View Profile
Re: Change needed... in the register overlay
« Reply #3 on: January 07, 2015, 12:37:40 pm »
Why would we want a dim to the background? Also what background? All popup boxes have the background-color you specified already.

Yeah, great question I suggested to "Dim the Lights" allowing it look more professional, also cleaner.

So when it pops up it does what this example does. http://buildinternet.com/live/lightsout/  Note: Im sure that external links are not allowed but I really dont have the time to walk through it.

Css would be something about like this,
Code: [Select]
.blackoutbg {
    background-color: #000;
    opacity: .7;
    filter: alpha(opacity=70);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    display: none;
    cursor: pointer;
}

Note: I am, "Mr Money Bags"
« Last Edit: January 07, 2015, 12:52:36 pm by Eliminator »


- Drugs are bad, mmkay -

"The hate of men will pass, and dictators die, and the power they took from the people will return to the people." - Charlie Chaplin

"Nothing inspires forgiveness quite like revenge." - Scott Adams
The following users liked this post: Mr Moneybags, Beer Money
Pages: 1