How can i change the login, submit, update e.c.t. from stock ones to ones ive made my self.
Thanks +Rep
Printable View
How can i change the login, submit, update e.c.t. from stock ones to ones ive made my self.
Thanks +Rep
explain a bit more?
Like on user systems where is says "login" the actuall button, I want to know how to change it
PHP Code:<form ENCTYPE="multipart/form-data" method="post" name="form1" action="upload.php">
somthing like that?Quote:
<form method="POST" action="login.php">
<input type="text" name="username" size="20">
<input type="password" name="password" size="20">
<input border="0" src="image url" name="imagebutton" type="image"></form>
Yup... Ty let me just see if it works
Isnt that html?Quote:
Originally Posted by Jamie.
You need to use CSS. For example:-
Use google or dreamweaver to explore other properties of the input you are able to edit.HTML Code:<style type="text/css">
input {
color: #colorcode;
border-color: #colorcode;
}
</style>
<input type="submit" value="Submit">
To make the login button an image for example, try <input type="image" src="url">.
php can use html ;l
Sorry? :S
You can use HTML inside PHP if that's what you're saying. <? echo('<font class="heading">Hi</font>'); ?> for example.