droidus Posted August 22, 2011 Share Posted August 22, 2011 how would i re-direct with this image button? it is a rollover. html: <a href="register.php"> <input type="submit" class="registerBtn" /></a> css: .registerBtn { display: block; width: 224px; height: 38px; background: url('../../Images/createNewAccount.png') bottom; text-indent: -99999px; padding:1px; border:1px; } .registerBtn:hover { background: url('../../Images/createNewAccountHover.png') bottom; } thanks in advance Quote Link to comment Share on other sites More sharing options...
sunfighter Posted August 22, 2011 Share Posted August 22, 2011 The <a href="register.php"> calls register.php when its clicked. What else were you looking for?? Quote Link to comment Share on other sites More sharing options...
requinix Posted August 22, 2011 Share Posted August 22, 2011 The calls register.php when its clicked. Except there's the inside it, which triggers the form first. If that's the problem then the 's action page needs to do the redirection. Quote Link to comment Share on other sites More sharing options...
droidus Posted August 23, 2011 Author Share Posted August 23, 2011 hm, i did <form action="register.php"> <input type="submit" class="registerBtn" /></form> and when i run over the button, it gives me the register link, but when clicked, it just refreshes the page. would i have to use javascript instead? Quote Link to comment Share on other sites More sharing options...
sunfighter Posted August 23, 2011 Share Posted August 23, 2011 try this: <a href="register.php"><input type="button" class="registerBtn"></a> Quote Link to comment Share on other sites More sharing options...
droidus Posted August 24, 2011 Author Share Posted August 24, 2011 hm, that'll do it! thanks 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.
× Pasted as rich text. Restore formatting
Only 75 emoji are allowed.
× Your link has been automatically embedded. Display as a link instead
× Your previous content has been restored. Clear editor
× You cannot paste images directly. Upload or insert images from URL.