• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Solved Layout/CSS --> Input

VirrageS

←•†ĿuĀ && ©¤¤•→
Joined
May 30, 2010
Messages
984
Reaction score
63
Location
Poland
Hello!
I have one question/problem.
So in my layout i made that if you click (focus in css :)) in input it makes border yellow and 2px.

And I want to make that it will only works for input in which i can write (something like acc number)
(becuase now when i click on button (like submit) then it makes border (yellow and 2px) 'cause his is in made in input too :mad: ).

Thanks and Rep++ for help. ;)


P.S. I'm using GesiorAcc 0.3.6 and Tibia Layout (Don't make post that in ModernAcc it will be solved etc. -.- <_<)
 
Last edited:
Add a class to your input. :eek:


Example:

CSS
input .field:active { border-style:solid; border-width:2px; border-color:#fff600; }

HTML
<input type="text" class="field" name="name" />
 
Back
Top