For Neopets ONLY discussion.
Topic locked

HTML help needed for my gallery...

Mon Jul 10, 2006 1:22 pm

How do I get rid of the black borders around the items in my gallery? I tried the code in Csshelp's petpage, but it doesn't work. I really like the look of it, you see and I'd like my gallery without the black borders. Thanks :)

Mon Jul 10, 2006 1:42 pm

Did you try this?
Code:
<style>img{border:none;}</style>

Mon Jul 10, 2006 1:48 pm

shapu wrote:Did you try this?
Code:
<style>img{border:none;}</style>


Nope! And it works! Thanks so much :)

Edit:

I also need the code to make the bar of colour and prettininess in this picture:

http://img.photobucket.com/albums/v385/ ... ground.jpg

to be at the very right of my gallery, so that it looks like this:

http://www.neopets.com/gallery/index.ph ... ekumage888

Thanks in advance :)

Mon Jul 10, 2006 2:43 pm

Here ya go:
Code:
<style>
body {background-color: red;
      background-image: url("http://img.photobucket.com/albums/v385/HarpSealPup86/gallerybackground.jpg");
      background-repeat: repeat-y;
      background-attachment: fixed;
      background-position: top right}
</style>

Replace the various properties as desired.

Mon Jul 10, 2006 4:07 pm

Thank you so much! *hugs*
Topic locked