Neopets Shop Coding Help Please?

I've just installed the image border code into my shop and it is working except for one thing. The border image is appearing in my featured sales section and I do not want it there. Any help to solve this problem would be appreciated. I really like this image border and do not want to get rid of it. Thanks. :) Shop Link: http://www.neopets.com/browseshop.phtml?owner=seanaf&banner
Forums: 

You could give the td that it is contained in a different class and code the style for that td in the style tags as background:none Not sure if it will work but may do

Also noticed you have no closing /td or closing /tr in that table

[quote=Gavin63]You could give the td that it is contained in a different class and code the style for that td in the style tags as background:none Not sure if it will work but may do[/quote] I don't quite understand it. What do you mean by different class and code and style tags? Sorry not very good at HTML.

[quote=Gavin63]Also noticed you have no closing /td or closing /tr in that table[/quote] I tried adding the tr and td closing but it just screws everything up. The whole page layout turns into a big mess.

In between the style tags make td.feature {background:none; You will need to close this with curly bracket as I am not sure if I can put a full line of style code here then in the featured container td tag where it reads td align="center" class="feature" by adding this class in it calls the background:none from the styles If that doesn't work maybe use a very small image of a plain white and give the td.feature in the style tags a new background url to where ever the small white image is located

I am off to bed sorry very late and can't think lol... but if you can't get it sorted out pm me and I will work it out and supply you the code in the next few days

Actually it may need background-image:none; instead of just background:none;

LOL actually it would be a lot easier to just put it all in a div box instead of a table in between the style tags add #feature{border:3px solid purple; width:500px; padding5px;text-align:center; close above line with a curly bracket Then delete all the table coding around your feature links and add div id=feature this has to have < and the > around it Then after all your featured links close the div inside < and > with /div

Arrrg it must be late the padding5px needs to be padding:5px