tags:

views:

37

answers:

2

Hi can someone help me remove the white line just below my top banner. In Firefox you can't see the line, but its visible in IE and Chrome.

You can see it here http://www.direkte-el.dk/default.aspx

Would prefer a JQuery solution, since its the only way I can change the layout.

Sorry the page is in Danish, but you should still be able to understand my problem.

+2  A: 

try

$('#tblBanner').remove();
Reigel
Hmm, looks like it only removed it in Chrome, but its still visible in Internet Explorer.The source for my js http://www.direkte-el.dk/images/editor/bundtekst.js
gulbaek
Any suggesting for fixing it in Internet Explorer?
gulbaek
Needed to remove the clostest tr for it to work in IE, but thx for helping me. $('#tblBanner').closest('tr').remove();
gulbaek
A: 

This will work:

$('.bannermenu table').remove();
Thariama
lol... that's already my answer... the table got an id, and that's the fastest way to it... :)
Reigel
is it a competition or what? The point is to answer the OP's question...
galambalazs
yeah... no competition needed... do I have to compete? :)
Reigel