runnerjp Posted February 20, 2007 Share Posted February 20, 2007 i dunno if this is more of a css question or something but is there away to "spice up" the boring login boxes??? Link to comment https://forums.phpfreaks.com/topic/39299-login/ Share on other sites More sharing options...
willpower Posted February 20, 2007 Share Posted February 20, 2007 yes you need CSS. TB honest I notice your code using old <font> tags etc...but i am frigtened to start on this one....lol Link to comment https://forums.phpfreaks.com/topic/39299-login/#findComment-189457 Share on other sites More sharing options...
willpower Posted February 20, 2007 Share Posted February 20, 2007 you have anotther isse. The page is very wide. on a standard 1024 browser, you do not see the login box at the side. Link to comment https://forums.phpfreaks.com/topic/39299-login/#findComment-189459 Share on other sites More sharing options...
sanguinious Posted February 20, 2007 Share Posted February 20, 2007 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 More sharing options...
runnerjp Posted February 20, 2007 Author Share Posted February 20, 2007 thanks i will take alook at that Link to comment https://forums.phpfreaks.com/topic/39299-login/#findComment-189502 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.