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 Link to comment https://forums.phpfreaks.com/topic/245398-image-button-re-direct/ 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?? Link to comment https://forums.phpfreaks.com/topic/245398-image-button-re-direct/#findComment-1260615 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. Link to comment https://forums.phpfreaks.com/topic/245398-image-button-re-direct/#findComment-1260629 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? Link to comment https://forums.phpfreaks.com/topic/245398-image-button-re-direct/#findComment-1260747 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> Link to comment https://forums.phpfreaks.com/topic/245398-image-button-re-direct/#findComment-1261071 Share on other sites More sharing options...
droidus Posted August 24, 2011 Author Share Posted August 24, 2011 hm, that'll do it! thanks Link to comment https://forums.phpfreaks.com/topic/245398-image-button-re-direct/#findComment-1261168 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.