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??? Quote Link to comment 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 Quote Link to comment 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. Quote Link to comment 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. Quote Link to comment 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 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.