Welcome to TalkGraphics.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Oct 2010
    Location
    Land of Immigrants
    Posts
    136

    Default Table Transparency - WD9

    Similar to transparency option for the charts, is there a transparency option for the table widget?

  2. #2
    Join Date
    Apr 2012
    Location
    SW England
    Posts
    17,833

    Default Re: Table Transparency - WD9

    All the styling for the Table widget is in a CSS file, csvtable.css.
    You could overwrite any of these styles in a page placeholder.

    You should Export my .web example to a location and open its index_htm_files folder and use a text editor to look into csvtable.css.
    If you make changes you would place then into Page HTML code (head) or into the HTML cod (head) Placeholder for my button (CSS3: Transparent Table Widget).

    I changed:
    Code:
    /* Table Cells */
    .table TD, #table TH {
        text-align: left;
        border: 1px solid #FFFFFF;
        border: 1px solid green;
    }
    /* Default background color for rows */
    .table TR {
        background: transparent;
    }
    /* Background color for odd rows */
    .table tr:nth-child(odd){
    
        background: transparent;
    }
    /* Hover color for all rows */
    
    .table TR:hover  {
        background: #efe;
    }
    Acorn

 

 

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •