View Full Version : Help?


colleena
09-06-2006, 11:47 AM
Hi there,

I'm currently working on my layout, and it's almost perfect! I just have a couple of coding questions that I can't seem to figure out...

1. What is the code for removing the Username:___, NP:____, Pet Name:___ information on a lookup?

2. How do you make it so all your text that you add isn't in italics? All my stat information isn't in italics, but any information that I add elsewhere is.

3. Lastly - How do you get a black border around your shield, game/auctions/trades, and other icons?

Sorry for asking so many questions. If you don't know them all it's okay! Thanks for all your help in advance; this is going to be one of my first moderately nice looking layouts. :)

_zr_
09-12-2006, 03:10 PM
#2: Add </i> at the very beginning of your user information.

#3: in your css add the following:
img {border:1px #000 solid;}
That will add a border to all your images. if you don't want a border on all your images you can do two things. Add in your css:
.img2 {border-width:0px;}
and to each image you don't want a border around add:
class="img2"
Or add
style="border-width:0px;" directly to your image tags. DO NOT FORGET THE QUOTES.



I don't actually know the code for the first question; sorry.

Nitallica
09-16-2006, 02:59 PM
1. What is the code for removing the Username:___, NP:____, Pet Name:___ information on a lookup?

Used to you could do this:

.tt, .tl {display: none;}

Note: I had to remove it from my lookup some time ago due to TNT's rule changes. I haven't tried to put it back in yet to see if it still works or not, but you could probably do something along those lines.

Pup
09-24-2006, 12:01 AM
2. How do you make it so all your text that you add isn't in italics? All my stat information isn't in italics, but any information that I add elsewhere is.

Type </i> at the very beginning of your lookup code :)