Div Link Problems |
Div Link Problems |
![]()
Post
#1
|
|
Member ![]() ![]() Group: Member Posts: 13 Joined: May 2006 Member No: 411,996 ![]() |
I did the Coding for My div Layout, and when put the final up the links all work in IE (internet Explorer) but they dont work in Firefox, can somone help me fix this problem? i have no clue what it is!
This is the code im Using CODE <div class="content" style="position: absolute; left:455px; top:787px; width:120px; height:231px; overflow: auto;"><left> <center><a href="http://collect.myspace.com/index.cfm?fuseaction=invite.addfriend_verify&friendID=3907722" target="_parent">Add As Friend</a></center> </div> ^thats the add friend button CODE <div class="content" style="position: absolute; left:540px; top:787px; width:120px; height:231px; overflow: auto;"><left> <center><a href="http://mail.myspace.com/index.cfm?fuseaction=mail.message&friendID=3907722" target="_parent">Message<br>Me</a></center> </div> ^Thats The Message me Button the codes are the same so i cant figure out what teh problem is!?!?!! anyone?! So say the add me button works, but the others dont work...such as comment me, add to favs, message me. etc. |
|
|
![]() |
![]()
Post
#2
|
|
t-t-t-toyaaa ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Official Member Posts: 19,821 Joined: Apr 2004 Member No: 11,270 ![]() |
Z index Example:
<div class="content" style="position: absolute; left:455px; top:787px; width:120px; height:231px; overflow: auto;z-index: 1"><left> <center><a href="http://collect.myspace.com/index.cfm?fuseaction=invite.addfriend_verify&friendID=3907722" target="_parent">Add As Friend</a></center> </div> Look at the bold. Add a diff number for each one. New div name example: From: CODE <div class="content" style="position: absolute; left:455px; top:787px; width:120px; height:231px; overflow: auto;"><left> <center><a href="http://collect.myspace.com/index.cfm?fuseaction=invite.addfriend_verify&friendID=3907722" target="_parent">Add As Friend</a></center> </div> to CODE <div class="CHOOSEANAME" style="position: absolute; left:455px; top:787px; width:120px; height:231px; overflow: auto;"><left> <center><a href="http://collect.myspace.com/index.cfm?fuseaction=invite.addfriend_verify&friendID=3907722" target="_parent">Add As Friend</a></center> </div> Where it says choose aname choose any name. If it still doesn't work post the code. |
|
|
![]() ![]() |