Got a little techonology problem that you need fixed pronto? Post it here and we'll see what we can do.
Topic locked

Yet Another Lookup Question

Fri Mar 04, 2005 8:24 am

http://www.neopets.com/randomfriend.phtml?place=6

I want to make a lookup kind of like that. Well, I want the sidebar anyway. Here's what I'm trying to do:

1. Hide the Neopets sidebar and yellow top bar.

2. Put my sidebar over there, and have the links still work.

3. Have it work in Firefox.

I got the sidebar to disappear, but there was a black outline left, and the yellow top bar wouldn't go away. I really don't know what I'm doing wrong.

EDIT: I'm starting to figure out that I will not learn how to do something until I go to the trouble of posting it. :P After digging through codes, I found what I needed. Here's what I came up with:

Code:
<style>
#m,#n,#mb{display: none;}
table, td {background: transparent;}
p img {filter:none alpha(opacity=100) chroma(color=white);}
</style>


m = sidebar links
n = clock, search, & language
mb = top banner

So, you take the #m out of there, and put it here:

Code:
 OBJECT, INPUT, FORM, TXT, #tbg, #m,{ visibility:hidden; }


It's not really hidden on Firefox, but the custom sidebar will cover it up. :D

Sun Mar 06, 2005 3:19 pm

I though this is all you had to put.

Code:
<img src="SIDEBAR IMG URL" class="nav" border="0" usemap=#a>


Edit: After looking closer at the code, I think this should work.

Code:
<style type="text/css"> hr {display: none;}
 OBJECT, INPUT, FORM, TXT, #tbg, #m, #mb, #n { visibility:hidden; }
table, td {background: transparent;}
img.nav { position: absolute; top: 0; left: 0; } </style>

<img src="SIDEBAR IMG URL" class="nav" border="0" usemap=#a>
Topic locked