how can i remove some frameborders(not all!)?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have at the top of my page two frames, but how can i remove the border
between them. There are more frames, what have borders between them, but i'd
like to keep them?
Anyone can help?

Thanks
 
Past said:
I have at the top of my page two frames, but how can i remove the
border between them. There are more frames, what have borders between
them, but i'd like to keep them?
Anyone can help?

Thanks

Do you literally mean frames (i.e. you have a web with a frameset and
several frames)?

I think frames do not have borders as such, only the contents therein. I may
be wrong, as I have an Iframe and it seems to have a slioght border -
although that could be an optical illusion based on the contrast between it
and the background.

Anyway, whatever the element is, try adding border=0
eg <table border=0)

If that doesn't work, try adding the zero border as a style
<table style="border:0">
or
<div style="border:0">
(depending on what the element with the border is)

Then if it doesn't work, repost (preferably with some code or a URL) and
maybe an expert can advise
 
Back
Top