Sophisticated
02-17-2003, 01:32 AM
I want to create button links for my website using html. I know how to do that and everything but my site has frames and I can't the links to target to my right side. Can you help me?
Micailah
Micailah
|
View Full Version : button links Sophisticated 02-17-2003, 01:32 AM I want to create button links for my website using html. I know how to do that and everything but my site has frames and I can't the links to target to my right side. Can you help me? Micailah bejayel 02-17-2003, 02:03 AM i thikn i did this once by putting the target= tag in the <form> tag! but i dont remember try it out. <form method="link" action="yourpage.html" target="yourframename"> Sophisticated 02-17-2003, 02:13 AM okay thanks bejayel 02-17-2003, 03:36 AM update: make sure you have it as a submit button or else it will not work. <form action="file.ntml" target="rightside"> <input type=submit value=submit> </form> Sophisticated 02-17-2003, 03:51 AM thanks. i justgot your pm i would have replied but your inbox is full!! how do i change its color... the submit button bejayel 02-17-2003, 04:17 AM with CSS. i actually completely forget the code. oh yes now i remember <input type="submit" value="click me!" style="font-family:comic sans ms; border-style:solid; border-color: blue; background:green;"> |