![]() |
|
|
|
#1 |
|
The following HTML is for a signature. There is one upper box that spans
2 columns and 2 lower boxes. I want to retain all borders except the one between the 2 lower boxes. I want the lower 2 boxes to look like a single box. Is there a way to do it? <html> <head> </head> <body> <table cols=2 border=4 style="background-color:teal;color:white"> <tr> <td colspan=2> <img src="file:///C:/xxxxx/signature.jpg"> </td> <tr> <td width=50%> Dennis M. Marks <br> Chico, California </td <td width=50%> </td> </tr> </table> </body> </html> -- Dennis M. Marks Disclaimer: The above is my opinion. I do not guarantee it. Be sure to back up any files involved and use at your own risk. Batteries not included. Not for internal use. Don't run with knives. ----== Posted via Newsfeeds.Com - Unlimited-Unrestricted-Secure Usenet News==---- http://www.newsfeeds.com The #1 Newsgroup Service in the World! 120,000+ Newsgroups ----= East and West-Coast Server Farms - Total Privacy via Encryption =---- Dennis Marks |
|
|
|
|
#2 |
|
Posts: n/a
|
Easiest way would be to load the code into an html editor and merge the
two lower cells together. Dennis Marks wrote: > The following HTML is for a signature. There is one upper box that spans > 2 columns and 2 lower boxes. I want to retain all borders except the one > between the 2 lower boxes. I want the lower 2 boxes to look like a > single box. Is there a way to do it? > > > <html> > <head> > </head> > <body> > <table cols=2 border=4 style="background-color:teal;color:white"> > <tr> > <td colspan=2> > <img src="file:///C:/xxxxx/signature.jpg"> > </td> > <tr> > <td width=50%> > Dennis M. Marks > <br> > Chico, California > </td > <td width=50%> > > </td> > </tr> > </table> > </body> > </html> > |
|
|
|
#3 |
|
Posts: n/a
|
Dennis Marks wrote:
> The following HTML is for a signature. There is one upper box that spans > 2 columns and 2 lower boxes. I want to retain all borders except the one > between the 2 lower boxes. I want the lower 2 boxes to look like a > single box. Is there a way to do it? Drop "border=4" then add the following styles to your TABLE element: border: 3px solid; and the following style to your first TD element: border-bottom: 2px solid; That roughly what you want? -- Toby A Inkster BSc (Hons) ARCS Contact Me ~ http://tobyinkster.co.uk/contact Now Playing ~ ./ed_harcourt/elephants_graveyard/2-12_-_breathe_a_little_softer.ogg |
|