xyellowbellx Posted January 10, 2018 Share Posted January 10, 2018 Does anyone know how to get rid of the "User Lookup: ------ ?' text? Also on the tabs they don't appear directly underneath the words, and it does this on 2 of my pet lookup's also. But it works fine on IE. Is there a piece of code to make it compatible in all browsers? Thanks :) Quote Link to comment Share on other sites More sharing options...
Yuiina Posted January 15, 2018 Share Posted January 15, 2018 Maybe @Scoobert_Doo can help you better than me. All I can advice you is this site http://www.neopets.com/~demioxy that is pretty confusing right now because photobucket is Quote Link to comment Share on other sites More sharing options...
Nielo Posted January 15, 2018 Share Posted January 15, 2018 This site shows how to remove "User lookup: username" in its entirety: <style> .content div { display: none; } .contentModule div { display: inline; } </style> I know this isn't exactly what you're looking for, but you could always add your username again in a separate div. Just removing "User lookup:" might be difficult. As for why the dropdowns aren't lining up correctly with the tabs, I'm not sure. I don't think there's really a good way to get it working in all browsers, but IE tends to respond differently to things (mostly not a in a good way), so I guess it might be possible that if you got it to work in Firefox it'd work in Chrome as well, but not in IE? It depends on your code though. Did something change in either the tabs or the dropdowns? Quote Link to comment Share on other sites More sharing options...
xyellowbellx Posted January 16, 2018 Author Share Posted January 16, 2018 Ughh the CSS code doesn't work sadly :( It's a pre-made look-up, and I've never altered it before apart from changing the collections and the trades, auctions, neofriend icons :/ Thank you for your help anyway!! Quote Link to comment Share on other sites More sharing options...
Sajjet Posted January 17, 2018 Share Posted January 17, 2018 To Nielo, I'll give it a try and see if the code or link you provided above can be useful for my user lookup editing since I have the problem that the username profile is lowered to the bottom due to my HTML Quote Link to comment Share on other sites More sharing options...
Nielo Posted January 17, 2018 Share Posted January 17, 2018 On 1/16/2018 at 5:53 PM, xyellowbellx said: Ughh the CSS code doesn't work sadly :( It's a pre-made look-up, and I've never altered it before apart from changing the collections and the trades, auctions, neofriend icons :/ Thank you for your help anyway!! That's odd; I tried the code before posting it and it worked for me. Have you tried searching the code for '.content div' and '.contentModule div'? If the pre-made look-up has already altered things in the "user-lookup" text, you'll need to add to (or replace) that with the part between the curly braces. For instance, I already have this in my code: .content div b { font-size: 25px; text-transform: capitalize; font-family: lucida; } .contentModule div b { font-size: 100%; font-family: verdana; } To make "User lookup: username" disappear, I have to make it look like this: .content div b { font-size: 25px; text-transform: capitalize; font-family: lucida; display: none; } .contentModule div b { font-size: 100%; font-family: verdana; display: inline; } Mouseykins 1 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.