Demo

Probiere ClanSphere aus und teste daran herum. Demo


Antworten: 5
Seite [1]
microz


Rock the board




Beiträge: 86
# Thema - 12.10.2010 um 19:01 Uhr
hi,

is possible change bottom submit in userlogin to link?, but example:

actually
 
1.
1. / 2. / ... 
 <input type="submit" name="login" value="Eintragen" class="lologin" />


to link
 
1.
1. / 2. / ... 
 <a href="#">Eintragen</a>


thanks,


Zuletzt editiert von microz am 12.10.2010 um 19:55 Uhr (2x Editiert)
Inaktiv
ichraffsnicht ClanSphere Team

Supporter
Supporter



Herkunft: Erdeborn bei Lutherstadt Eisleben
Beiträge: 3191
# Antwort: 1 - 13.10.2010 um 07:50 Uhr
you can make this via javascript.

for example:
<a href="#" onclick="document.getElementById( 'myForm' ).submit(); return;" />


but what is your destination?

its better you submit a form via <input type="submit" />



------------------



Inaktiv
|
microz
Thread-Ersteller


Rock the board




Beiträge: 86
# Antwort: 2 - 13.10.2010 um 08:23 Uhr
is for design specific :(

would look like?
 
1.
1. / 2. / ... 
 <a href="#" onclick="document.getElementById( 'myForm' ).submit(); return;" />Login</a>


Inaktiv
|
SCHIRI ClanSphere Team


Weltmeister



Herkunft: Hamburg
Beiträge: 5299
# Antwort: 3 - 13.10.2010 um 09:40 Uhr
you can simply style the button to look like a link via css:

.lologin {
display: inline;
background: none;
text-decoration:unterline;
border: none;
}


------------------
www.laszlokorte.de

Inaktiv
|
ichraffsnicht ClanSphere Team

Supporter
Supporter



Herkunft: Erdeborn bei Lutherstadt Eisleben
Beiträge: 3191
# Antwort: 4 - 13.10.2010 um 16:18 Uhr
13.10.2010 um 08:23 Uhr - microz:
is for design specific :(

would look like?
 
1.
1. / 2. / ... 
 <a href="#" onclick="document.getElementById( 'myForm' ).submit(); return;" />Login</a>


myForm is the ID of your form-element.

but its better you use CSS instead.

an other option is <input type="image" />.

ask google for more information about that.


------------------



Inaktiv
|
microz
Thread-Ersteller


Rock the board




Beiträge: 86
# Antwort: 5 - 13.10.2010 um 21:40 Uhr
very thanks


Zuletzt editiert von microz am 13.10.2010 um 21:40 Uhr (1x Editiert)
Inaktiv
|
Antworten: 5
Seite [1]


Sie müssen sich registrieren, um zu antworten.