SOMETHING COVERING LINKS!, HELP! |
SOMETHING COVERING LINKS!, HELP! |
![]()
Post
#1
|
|
![]() Senior Member ![]() ![]() ![]() ![]() Group: Member Posts: 253 Joined: Jul 2009 Member No: 739,898 ![]() |
Alright, right now I'm stuck.
Everything's good, and works find, expect some links up the top left. They don't roll over, it's like something's on top of them stopping them from rolling. Help me out? EDIT : Found my problem, it was my twitter, it was setting a mask so to speak over everything above it. Preventing it from being click-able. What can I do to stop this from happening? EDIT :x2 Fixed my problem. :) CODE .twitter {position:absolute; top:1055px; left:50%; margin-left:-550px; _margin-left:px; width:290px; height:290px; z-index:4;} The height was previously set to 1000. Thanks anyway. :) ( I wasn't sure how to delete the whole thread. ) EDIT :x3 Okay, now this is making me angry. It's at top:1055px; but that's WAY under estimated. It should be around 2500, so for some reason the positioning is weird. But according to it, 1055 is where it needs to be. Where 1055 actually IS on the page, the links don't work. It's still like it's covered. Any ideas? |
|
|
![]() |
![]()
Post
#2
|
|
![]() Treasure Pleasure ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() Group: Head Staff Posts: 11,193 Joined: Oct 2005 Member No: 281,127 ![]() |
Look for this in your codes:
CODE <div class="twitter"> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" align="middle" height="280" width="290"> <param name="allowScriptAccess" value="never"> <param name="allowNetworking" value="internal"> <param name="movie" value="http://static.twitter.com/flash/widgets/profile/TwitterWidget.swf"> <param name="wmode" value="transparent"> <param name="quality" value="high"> <param name="bgcolor" value="000000"> <param name="flashvars" value="userID=79913974&styleURL=http://static.twitter.com/flash/widgets/profile/smooth.xml"> <embed type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" src="http://static.twitter.com/flash/widgets/profile/TwitterWidget.swf" wmode="transparent" quality="high" bgcolor="000000" flashvars="userID=79913974&styleURL=http://static.twitter.com/flash/widgets/profile/smooth.xml" align="middle" height="280" width="290"><a style="left: 251px ! important; top: -15px ! important;" title="Block this object with Adblock Plus" class="bxuwxlvtpwstfjaqdjpd aeagmoerafzcflyvvltb" href="http://static.twitter.com/flash/widgets/profile/TwitterWidget.swf"></a><a class="bxuwxlvtpwstfjaqdjpd" href="http://static.twitter.com/flash/widgets/profile/TwitterWidget.swf"></a> </object> </div> Add another set of <div> tags so it looks like this: CODE <div class="twitter"><div> <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" align="middle" height="280" width="290"> <param name="allowScriptAccess" value="never"> <param name="allowNetworking" value="internal"> <param name="movie" value="http://static.twitter.com/flash/widgets/profile/TwitterWidget.swf"> <param name="wmode" value="transparent"> <param name="quality" value="high"> <param name="bgcolor" value="000000"> <param name="flashvars" value="userID=79913974&styleURL=http://static.twitter.com/flash/widgets/profile/smooth.xml"> <embed type="application/x-shockwave-flash" allowscriptaccess="never" allownetworking="internal" src="http://static.twitter.com/flash/widgets/profile/TwitterWidget.swf" wmode="transparent" quality="high" bgcolor="000000" flashvars="userID=79913974&styleURL=http://static.twitter.com/flash/widgets/profile/smooth.xml" align="middle" height="280" width="290"><a style="left: 251px ! important; top: -15px ! important;" title="Block this object with Adblock Plus" class="bxuwxlvtpwstfjaqdjpd aeagmoerafzcflyvvltb" href="http://static.twitter.com/flash/widgets/profile/TwitterWidget.swf"></a><a class="bxuwxlvtpwstfjaqdjpd" href="http://static.twitter.com/flash/widgets/profile/TwitterWidget.swf"></a> </object> </div></div> Then look for this little bit: CODE .music {display:none;} table table td.text div object {position:absolute; top:1490px; left:50%; margin-left:-232 px;z-index:4} table table td.text div object object {position:static; margin-left:-95px;} Add this right underneath it: CODE table table td.text div div object {position:static; margin:auto!important;} See if that does anything. |
|
|
![]() ![]() |