Jump to content

User lookup help


xyellowbellx

Recommended Posts

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?

Link to comment
Share on other sites

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

Link to comment
Share on other sites

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;
}

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...