|
From: rsderrick on 24 Feb 2006 08:52 Hi Everyone, I consider myself a novice at DW and need to ask a novice question. Can anyone tell me how to get the really neat boarder on the "table" like the ones that are on the Adobe / Macromedia website. I assume that this is done with CSS but I also wonder if it is being created using an image for the background. Can anyone explain this to me? I thought maybe it was done with a nested table but I don't think that is it. Scott
From: Joe Makowiec on 24 Feb 2006 09:19 On 24 Feb 2006 in macromedia.dreamweaver, rsderrick wrote: > I consider myself a novice at DW and need to ask a novice question. > Can anyone tell me how to get the really neat boarder on the "table" > like the ones that are on the Adobe / Macromedia website. I assume > that this is done with CSS but I also wonder if it is being created > using an image for the background. Can anyone explain this to me? On the main page, in the four-column area, the table outlines are created using these images, which are used as backgrounds on various divs: http://assets.macromedia.com/cdn-images/master/layouts/home/cap_top.gif http://assets.macromedia.com/cdn-images/master/layouts/home/background_content.gif http://assets.macromedia.com/cdn-images/master/layouts/home/cap_bottom.gif > I thought maybe it was done with a nested table but I don't think > that is it. There was a method in the 'good old days', involving nested tables, cell padding and background colors: <table width="500" border="0" cellpadding="1" cellspacing="0" bgcolor="#00FF00"> <tr> <td> <table width="100%" border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF"> <tr> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> </tr> </table> </td> </tr> </table> But don't do it. It's ugly, it uses excessive code, and can be done more simply with CSS: table.greenborder { width : 500px ; background-color : white ; border : 1px solid lime ; } .... <table class="greenborder"> <tr> <td> </td> <td> </td> </tr> <tr> <td> </td> <td> </td> </tr> </table> -- Joe Makowiec http://makowiec.net/ Email: http://makowiec.net/email.php
From: Tim G on 25 Feb 2006 03:08 "rsderrick" <webforumsuser(a)macromedia.com> wrote in message news:dtn32g$6bg$1(a)forums.macromedia.com... > Hi Everyone, > > I consider myself a novice at DW and need to ask a novice question. Can > anyone > tell me how to get the really neat boarder on the "table" like the ones > that > are on the Adobe / Macromedia website. Boarders on the table? Sounds like a pretty wild bed-and-breakfast.... :) tim
From: Murray *TMM* on 25 Feb 2006 07:49 I always think of sailing ships and grappling hooks.... 8) AVAST, ME HEARTIES! -- Murray --- ICQ 71997575 Team Macromedia Volunteer for Dreamweaver (If you *MUST* email me, don't LAUGH when you do so!) ================== http://www.dreamweavermx-templates.com - Template Triage! http://www.projectseven.com/go - DW FAQs, Tutorials & Resources http://www.dwfaq.com - DW FAQs, Tutorials & Resources http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes ================== "Tim G" <webservicesNOSPAM(a)pactumgroup.com> wrote in message news:dtp39m$qeg$1(a)forums.macromedia.com... > > "rsderrick" <webforumsuser(a)macromedia.com> wrote in message > news:dtn32g$6bg$1(a)forums.macromedia.com... >> Hi Everyone, >> >> I consider myself a novice at DW and need to ask a novice question. Can >> anyone >> tell me how to get the really neat boarder on the "table" like the ones >> that >> are on the Adobe / Macromedia website. > > Boarders on the table? Sounds like a pretty wild bed-and-breakfast.... > > :) > > tim >
From: rsderrick on 26 Feb 2006 01:19 Joe, I tried to recreate the boarders with the images. I am not sure if I am doing this correctly or not. I don't know CSS well enough to try it there yet so I did it in tables. I did notice that it didn't work in FF but does in IE. Any suggestions. http://www.midstatebeekeepers.com/test_boarders.html TIA Scott
|
Next
|
Last
Pages: 1 2 Prev: Reveal and Hide 'Hidden Tables' Next: - Before I tell my boss this can't be done... |