Jump to content

login


runnerjp

Recommended Posts

you can just add a style to the text box eg:

 

style='border-style:none;'

 

will give a login with no border, not very useful :)

 

but if you try,

 

<input type='text' style='border:2px dotted #ff9900;'>

 

or you could make it a site wide style and then just give each text box you want to apply it to a class, eg

 

<style>
.textbox { border:2px; dotted #ff9900; }
</style>

<input type='text' class='textbox'>

 

this is a useful page for css properties: http://www.quackit.com/css/properties/

 

Angus.

Link to comment
https://forums.phpfreaks.com/topic/39299-login/#findComment-189501
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.