Outline border around several tables?????

Any of you willing experts out there able to help me,
i am creating a website...
http://www.andybarrington.com/ice/index.html,     (this site is still under going construction)
using tables & css, and the customer has asked me if i was able to put a border around 'everything', my problems is ths at 'everything' is made up of about 2-3 tables.
How would i be able to put a border that goes around the 3 tables but obnly on the outer edges?
all the best
Andy Barrington
www.andybarrington.com

Put a border on your <div> which is wrapping all the tables. Inline css shown below -
style="border: 1px solid #00000;" - Change #000000 to the color you need.
<div align="center" style="border: 1px solid #00000;">
  <table width="800" height="85" cellpadding="0" cellspacing="0" bgcolor="5" 1="0">
or give the <div> an id:
<div align="center" id="wrapper">
and in your css:
#wrapper {
border: 1px solid #000000;

Similar Messages

  • How do I put an outline border around a table i.e. without internal borders being displayed?

    Hi
    I'd appreciate some help with putting a border around a table
    as I'm sure
    I'm not doing this the best way!
    I selected my table then chose a thin (size 2) border and
    desired colour.
    The problem is this has put a border around every cell in the
    table.
    Trying to remove the internal borders has been very
    frustrating!
    Just be clear, when I say "remove the internal borders" I
    don't want to
    merge cells I just want to stop the borders displaying.
    So...
    Is there a quick way to simply put an outline border around
    the table?
    What is the best method for removing internal borders?
    Having got so used to the ease of formatting tables in MS
    Word this is a bit
    of a hair puller!!
    Thanks for your time.
    Happy New Year!!
    Ian

    Don't use the property inspector to add the border - you will
    need to use
    css...
    examples here:
    http://www.dreamweaverresources.com/tutorials/tableborder.htm
    Nadia
    Adobe® Community Expert : Dreamweaver
    Tutorials |SEO |Templates
    http://www.DreamweaverResources.com
    http://www.perrelink.com.au
    CSS Tutorials for Dreamweaver
    http://www.adobe.com/devnet/dreamweaver/css.html
    "Ian R" <[email protected]> wrote in message
    news:eniufa$iaq$[email protected]..
    > Hi
    >
    > I'd appreciate some help with putting a border around a
    table as I'm sure
    > I'm not doing this the best way!
    >
    > I selected my table then chose a thin (size 2) border
    and desired colour.
    >
    > The problem is this has put a border around every cell
    in the table.
    >
    > Trying to remove the internal borders has been very
    frustrating!
    >
    > Just be clear, when I say "remove the internal borders"
    I don't want to
    > merge cells I just want to stop the borders displaying.
    >
    > So...
    >
    > Is there a quick way to simply put an outline border
    around the table?
    >
    > What is the best method for removing internal borders?
    >
    > Having got so used to the ease of formatting tables in
    MS Word this is a
    > bit of a hair puller!!
    >
    > Thanks for your time.
    >
    > Happy New Year!!
    >
    > Ian
    >

  • How to get a border around several components in GridBagLayout

    I have several buttons in a 16 x 12 matrix using GridBagLayout manager
    Now I want to have a border around buttons 1/1 to 6/6 and another border around 1/7 to 8/6
    and another border around 1/9 to 16/6. How can I do this ?

    I usually create JPanels for each group, with their own LayoutManager. Adding a [ border to a JPanel is fairly staight forward|http://java.sun.com/docs/books/tutorial/uiswing/components/border.html] . To put thing together, I add instances of those JPanels to a top level JPanel in some frame or window.

  • Why a border around table?

    Can anyone tell me why there is a border around the table in the center of this page?  http://jeannettedutton.com/draft/contact.html  There are no borders defigned in the style sheet.
    Thanks!
    Jeannette

    Why are they not working?
    table {
    border: none;
    border-color: #FFF;
    td tr {
    border: none;
    border-color: #FFF;
    Invalid HTML in the CSS.
    "td tr" means the rule applies whenever a <tr> tag is found inside a <td> tag.
    That's invalid HTML so the rule will never apply.
    EITHER
    Swap the tags so the HTML is valid
    tr td {
    border: none;
    border-color: #FFF;
    OR
    Add a comma between them so the rule applies to both tags individually (I would also swap the tags as well)
    tr, td {
    border: none;
    border-color: #FFF;

  • Border problems in table layouts.

    This question may seem juniorish at best, but I'll go ahead.
    After laying out my page and centering the body, I realized I
    wanted a simple border around the entire content. Reason was for
    when I viewed it in a higher resolution I felt it was aesthetically
    better looking. Adobe does this in it's ages and I having figured
    that out yet. I have tried what I know of and cannot find a way to
    do this. I have tried a single large table to surround the rest of
    the document but it somehow links itself to the other tables and
    makes their borders visible when its properties are altered. The
    result is boxes all over the place instead of a single border.
    Possibly I am using the wrong layout technique. Like I said, I am
    new. But, I am willing to problem-solve my way through my
    dreamweaver learning.
    Thanks,
    Jeff

    If you've created your page using a table, you can use css to
    define a
    border around that table instead of inserted everything
    inside of another
    table.
    this may help - shows you how to insert a style into your
    stylesheet or into
    the head of your document...
    http://www.dreamweaverresources.com/tutorials/tableborder.htm
    Nadia
    Adobe® Community Expert : Dreamweaver
    http://www.csstemplates.com.au
    http://www.DreamweaverResources.com
    |Tutorials|SEO |CSS Templates
    http://www.adobe.com/devnet/dreamweaver/css.html
    CSS Tutorials for Dreamweaver
    > This question may seem juniorish at best, but I'll go
    ahead. After laying
    > out
    > my page and centering the body, I realized I wanted a
    simple border around
    > the
    > entire content. Reason was for when I viewed it in a
    higher resolution I
    > felt
    > it was aesthetically better looking. Adobe does this in
    it's ages and I
    > having
    > figured that out yet. I have tried what I know of and
    cannot find a way
    > to do
    > this. I have tried a single large table to surround the
    rest of the
    > document
    > but it somehow links itself to the other tables and
    makes their borders
    > visible
    > when its properties are altered. The result is boxes all
    over the place
    > instead of a single border. Possibly I am using the
    wrong layout
    > technique.
    > Like I said, I am new. But, I am willing to
    problem-solve my way through
    > my
    > dreamweaver learning.
    >
    > Thanks,
    > Jeff
    >
    >
    >

  • Remove Active Tab White Outline Border FF29?

    Hi
    I would like to remove the white outline border around the active tabs in FF29. I would like it to blend in to the background like the inactive tabs.
    I have Tab mix plus and classic theme restorer installed. They do fine only would like the border transparent.
    Thanks

    Could you post a screen shot of what your tabs look like? It would be great if you included a shot showing at least one background tab (no outline), a hovered tab (outline with slightly colored background) and active tab. This article has suggestions: [[How do I create a screenshot of my problem?]]

  • Border around cells

    Hi all!
    I have looked at the DefaultTableCellRenderer. This draws a border around one cell. Is it possible to draw a border around several cells, so that they form a "block of cells".
    Johan

    jtable painting is done cell by cell. To get border around few blocks you need to use your own UI class.Please look into BasicTableUI.java , there you'll find paintRow( ) method that'll delegate the call to paintCell for each cell painting. override paintRow to paint border around few cells after the paintCell operation for all the columns in that row is completed. This can be done by getting getCellRect for the required columns and adding to get a bigger rectangle and painting that rectangle.

  • Tables - Only want Outline Border not internal borders

    Hi
    Im using MX 2004.
    I'd like to add a coloured outside border to my table but
    when I select the
    table and choose a border colour it is automatically applied
    to all cell
    borders i.e
    including the inside borders. How do I remove the internal
    borders or
    simply set an outline border only?
    This is proving to be rather cumbersome - spoilt by the ease
    of tables in MS
    Word!
    Thanks for any info.
    Ian

    http://www.projectseven.com/tutorials/css/qdmacfly/index.htm
    http://www.macromedia.com/devnet/mx/dreamweaver/css.html
    http://www.macromedia.com/devnet/dreamweaver/articles/tableless_layout_dw8.html
    http://www.macromedia.com/devnet/dreamweaver/articles/css_concepts.html
    http://apptools.com/examples/pagelayout101.php
    Murray --- ICQ 71997575
    Adobe Community Expert
    (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
    ==================
    "Ian R" <[email protected]> wrote in message
    news:[email protected]...
    > Hi Murray
    >
    > Thanks for the advice about WORD tables! Ive already
    felt the pain -
    > assuming I could do the same in DW.
    >
    > I know nothing about CSS and havent a clue how to begin
    using your
    > suggestion.
    >
    > Could you or anyone suggest a good online tutorial for
    CSS beginners?
    >
    > Thanks
    >
    > Ian
    >
    >
    > "Murray *ACE*" <[email protected]>
    wrote in message
    > news:[email protected]...
    >> Use CSS instead of HTML borders, e.g.,
    >>
    >> table { border:1px solid green; }
    >>
    >> or -
    >>
    >> <table style="border:1px solid pink;">
    >>
    >>> spoilt by the ease of tables in MS Word!
    >>
    >> You'll do yourself a big favor if you forget
    everything you know about
    >> tables in Microsoft Word. This knowledge will HURT
    you when you are
    >> working with HTML tables.
    >>
    >> --
    >> Murray --- ICQ 71997575
    >> Adobe Community Expert
    >> (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
    >> ==================
    >>
    >>
    >> "Ian R" <[email protected]> wrote in
    message
    >> news:[email protected]...
    >>> Hi
    >>>
    >>> Im using MX 2004.
    >>>
    >>> I'd like to add a coloured outside border to my
    table but when I select
    >>> the
    >>> table and choose a border colour it is
    automatically applied to all cell
    >>> borders i.e
    >>> including the inside borders. How do I remove
    the internal borders or
    >>> simply set an outline border only?
    >>>
    >>> This is proving to be rather cumbersome - spoilt
    by the ease of tables
    >>> in MS Word!
    >>>
    >>> Thanks for any info.
    >>>
    >>> Ian
    >>>
    >>>
    >>>
    >>
    >>
    >
    >

  • Can't get rid of white border around image

    http://www.gunnar.ca/laminatepage2.htm
    I created a rounded corner in photoshop for my table. I
    created a cell in the bottom left corner of the table and placed
    the gif. There is a thin whit border around the outer edge of the
    gif, so it doesn't look genuinely rounded. Can anyone tell me how
    to get rid of that so it looks like the table is actually rounded?
    Thank you!

    Because the table containing the GIF has a border. In your
    styleA.css
    stylesheet, the rule:
    .border {
    border: 1px solid #E5E5E5;
    adds a border to the table. Delete the rule. Of course - that
    may affect
    other things that use the .border class. Or - delete the
    class from the
    table tag.
    Several problems with the page:
    styles.css cannot be found
    sideNavStyles.css cannot be found
    34 vaildation errors:
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.gunnar.ca%2Flaminatepage2.htm
    Alec
    Adobe Community Expert

  • How can I create a white border around figures that are in an image? (CS 6; examples+image included)

    Hi,
    I have CS6 and am wondering how to create a white ("comic style"?) border around figures in an image, as in the examples below. I don't wish to include the black shadow of the border, just the white part.
    Examples:
    Here's the image I'd like to alter, making a white border around the outline of all five figures:
    I researched for quite a while but could find no instructions. It would be very much appreciated if someone knows and would be kind enough to share the technique! Thank you.

    If you make the image a layer (opposed to Background)...
    You could Select the blue with the Magic Wand as Semaphoric says, then fill with white.  Then choose Select - Modify Selection - Contract, and mask or delete the remaining pixels.  The Contract operation will give you a nice border the size you choose.
    For extra credit, you could use Refine Edge to make the selection more accurate.
    Click to see the image  against a dark background.
    -Noel

  • When I have a border around a group of cellsand remove it, it also removes the grid lines. When I go to print the sheet, there are blank spaces where the border had been. I'm sing a MacBook.

    When I have  a border around a group of cell, how do I remove it. If I outline the cells again and then show in the Inspector NO BORDER, it removes not only the borderbut when I go to print it also the grid lines.

    What application are you using? Numbers? Excel? Something else?
    For help with Numbers spreadsheets go to this forum.
    If you are using Excel, Microsoft has a forum to help you.
    If it is something else, let us know what and we will try to point you in the right direction.
    Best of luck.

  • Is there a way to print both gridlines AND the border of a table in Numbers '09?

    Hi there. I cannot find a way to print both the gridlines AND the border of a table.
    I can print the gridlines, but not a border around the selected area.
    Any ideas?
    Thanks!

    Apply the define grid feature (here I defined a blue grid)
    then apply the ddefine border feature (here I defined a red border)
    Yvan KOENIG (VALLAURIS, France) mardi 18 octobre 2011 10:06:21
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • I can't get rid of this blue border around my artwork after it's published to the web

    I can't get rid of this blue border around my artwork after it's published to the web

    That did not work.
    Here's where I put it. The blue bordeer still show up around the large rectangular image.
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Ray Bros., Inc.</title>
    <style type="text/css">
    @import url("PopupMenuC.css");
    @import url("PopupMenuB.css");
    @import url("PopupMenu1.css");
    body {
              margin-left: 00px;
              margin-top: 00px;
              margin-right: 00px;
              margin-bottom: 00px;
              text-align: center;
    a img {border:none}
    .Arial {
              font-family: Arial, Helvetica, sans-serif;
    .Arial {
              font-size: 10px;
    .Arial {
              font-size: 12px;
    .Arial .Arial {
              font-size: 14px;
    </style>
    <script language="JavaScript1.2" type="text/javascript" src="mm_css_menu.js"></script>
    </head>
    <body>
    <table width="1080" border="0" align="center" cellpadding="0" cellspacing="0">
      <tr>
        <td height="279" align="center" valign="top"><div id="FWTableContainer1818523225"> <img name="PopupMenuC" src="PopupMenuC.jpg" width="1082" height="279" id="PopupMenuC" usemap="#m_PopupMenuC" alt="" />
          <map name="m_PopupMenuC" id="m_PopupMenuC">
            <area shape="rect" coords="899,240,1064,265" href="index-new.html" alt="" />
            <area shape="rect" coords="679,240,844,265" href="index-new.html" alt="" />
            <area shape="rect" coords="460,240,625,265" href="javascript:;" alt="" onmouseout="MM_menuStartTimeout(1000);"  onmouseover="MM_menuShowMenu('MMMenuContainer0525123758_0', 'MMMenu0525123758_0',485,265,'PopupMenuC');"  />
            <area shape="rect" coords="241,240,406,265" href="javascript:;" alt="" onmouseout="MM_menuStartTimeout(1000);"  onmouseover="MM_menuShowMenu('MMMenuContainer0524224504_0', 'MMMenu0524224504_0',262,265,'PopupMenuC');"  />
            <area shape="rect" coords="22,240,187,265" href="javascript:;" alt="" onmouseout="MM_menuStartTimeout(1000);"  onmouseover="MM_menuShowMenu('MMMenuContainer0524221503_1', 'MMMenu0524221503_1',46,265,'PopupMenuC');"  />
          </map>
          <div id="MMMenuContainer0525123758_0">
            <div id="MMMenu0525123758_0" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();"> <a href="index-new.html" id="MMMenu0525123758_0_Item_0" class="MMMIFVStyleMMMenu0525123758_0" onmouseover="MM_menuOverMenuItem('MMMenu0525123758_0');"> RBI-NS100 </a> <a href="index-new.html" id="MMMenu0525123758_0_Item_1" class="MMMIVStyleMMMenu0525123758_0" onmouseover="MM_menuOverMenuItem('MMMenu0525123758_0');"> RBI-M100 </a> <a href="index-new.html" id="MMMenu0525123758_0_Item_2" class="MMMIVStyleMMMenu0525123758_0" onmouseover="MM_menuOverMenuItem('MMMenu0525123758_0');"> RBI-100 </a> <a href="index-new.html" id="MMMenu0525123758_0_Item_3" class="MMMIVStyleMMMenu0525123758_0" onmouseover="MM_menuOverMenuItem('MMMenu0525123758_0');"> Color Charts </a> </div>
          </div>
          <div id="MMMenuContainer0524224504_0">
            <div id="MMMenu0524224504_0" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();"> <a href="index-new.html" id="MMMenu0524224504_0_Item_0" class="MMMIFVStyleMMMenu0524224504_0" onmouseover="MM_menuOverMenuItem('MMMenu0524224504_0');"> RBI-5V </a> <a href="index-new.html" id="MMMenu0524224504_0_Item_1" class="MMMIVStyleMMMenu0524224504_0" onmouseover="MM_menuOverMenuItem('MMMenu0524224504_0');"> RBI Low Profile AGG </a> <a href="index-new.html" id="MMMenu0524224504_0_Item_2" class="MMMIVStyleMMMenu0524224504_0" onmouseover="MM_menuOverMenuItem('MMMenu0524224504_0');"> Color Charts </a> </div>
          </div>
          <div id="MMMenuContainer0524221503_1">
            <div id="MMMenu0524221503_1" onmouseout="MM_menuStartTimeout(1000);" onmouseover="MM_menuResetTimeout();"> <a href="index-new.html" id="MMMenu0524221503_1_Item_0" class="MMMIFVStyleMMMenu0524221503_1" onmouseover="MM_menuOverMenuItem('MMMenu0524221503_1');"> RBI-MT240 </a> <a href="index-new.html" id="MMMenu0524221503_1_Item_1" class="MMMIVStyleMMMenu0524221503_1" onmouseover="MM_menuOverMenuItem('MMMenu0524221503_1');"> RBI-200 </a> <a href="index-new.html" id="MMMenu0524221503_1_Item_2" class="MMMIVStyleMMMenu0524221503_1" onmouseover="MM_menuOverMenuItem('MMMenu0524221503_1');"> RBI-175 </a> <a href="index-new.html" id="MMMenu0524221503_1_Item_3" class="MMMIVStyleMMMenu0524221503_1" onmouseover="MM_menuOverMenuItem('MMMenu0524221503_1');"> R-Panel </a> <a href="index-new.html" id="MMMenu0524221503_1_Item_4" class="MMMIVStyleMMMenu0524221503_1" onmouseover="MM_menuOverMenuItem('MMMenu0524221503_1');"> Color Charts </a> </div>
          </div>
        </div></td>
      </tr>
      <tr>
        <td valign="top"><p><br />
        </p></td>
      </tr>
      <tr>
        <td> </td>
      </tr>
      <tr>
        <td> </td>
      </tr>
      <tr>
        <td>...</td>
      </tr>
      <tr>
        <td> </td>
      </tr>
    </table>
    </body>
    </html>

  • How to disappear the border of a table in XML

    Hi,
    I am using an adf table but from xml i am unable to hide the border of that table.
    my code is as below-
    <af:table value="#{bindings.HixEnterPostalCodeVO1.collectionModel}"
    var="row"
    rows="#{bindings.HixEnterPostalCodeVO1.rangeSize}"
    first="#{bindings.HixEnterPostalCodeVO1.rangeStart}"
    width="90%" partialTriggers="CreateRowId1"
    banding="none" bandingInterval="1"
    inlineStyle="border-color:rgb(255,255,255); outline-color:rgb(255,255,255); color:rgb(255,255,255); background-color:rgb(255,255,255); outline-style:none; outline-width:0.0pt; border-style:none; border-width:0.0pt;">
    Can anyone help me in this.
    Thanks,

    I speak better French. So you can translate with google.
    L'astuce que j'utilise est la suivante :
    1 - Extraire les données, un select
    2 - Enregistrer les données dans un fichiers txt ou csv
    3 - ouvrir le fichier avec excel
    4 - créer une colonne à gauche de la colonne contenant les données et écrire INSERT INTO TABLE VALUES (
    5 - dans la colonne de droite écrire *)*
    6 - enregistrer et tu as ton script pour transférer les données dans une autre BD.
    Bonne chance.

  • How to achieve black border around a logo

    Hello,
    I am trying to do a parody of a Top Gun logo and have it done except for the border around the image. I know this is probably very simple and I've googled it but can't figured it out.
    Here is an example:
    http://www.redbubble.com/people/tgigreeny/works/7360099-top-gun-sundown-with-tomcat
    I want to create that black border/background colour and can't figure it out.
    Thanks for any help you can offer.
    Mary

    Well actually it is a bit more complex than I wrote
    1 You have to outline the text and
    2. united it with the art (color bars that hbe the same color)
    3. you have to give the object a stroke and drag it below the fill in the appearance panel
    4 the jet plane needs a fill of white
    5. the star needs a stroke with the stroke being draged below the fill in the appearaqnce panel
    6. then you group everything and give the group a sufficent weight stroke cover all the gaps
    7 and finally you drag the stroke you gave the group below the contents in the appearance panel (that means it is behind the groups contents the logo art.
    Like such ( You have to think this one out.)

Maybe you are looking for

  • IOS - iCal problem - Events appear as "all-day" whereas they shouldn't

    See below a conversation I had with a service provider. There is a bug in iOS when dealing with events in UTC times. Any solution to this? On Sat, Nov 16, 2013 at 11:14 AM, xxx wrote: Hi, I noticed a small problem with a calendar to which I subscribe

  • Help in calling function module

    need to call a function module, for security purpose, do not want to show the name of function module, how it can be done ? Study SAP

  • Multiple records error in Xacute Query, xMII 12.0

    Hi Gurus, I am on xMII 12.0. I have a transaction where i am getting multiple line items from a BAPI is ECC system & want to display these on to the browser. I have an output parameter where I am passing all the values. In my tracer I can see all the

  • ActionScript 3

    Can anyone help me out with ActionScript 3? Im looking to loop a movie from frame 78 to the end. So, I want to play the entire movie from beginning to end, then go to frame 78 and loop from 78 to the end forever. Your support is much appreciated. Tha

  • Text messages being sent in MIME format?

    i currently receive work pages as text messages on my iphone 3gs. our system generates these pages as emails to [phone number]@mms.att.net. the person supporting this system reports that when i accept ownership for a given page (this is an on-call ro