table compression on web page

Ask a Question related to Macromedia ColdFusion, Design and Development.

  1. #1

    Default table compression on web page

    not a CF issue but all these fertile minds...?

    when setting a table width as a percentage to compress/enlarge as page
    resizes, is there a way to have it compress from left so background image right
    side maintains as left side "disappears".

    need for framset top frame that contains logo and art.

    tnx in advance,

    ranger Guest

  2. Similar Questions and Discussions

    1. PDF Optimizer: What is'Optimize compression of page regions based on color content'?
      Here is my story... I received a pdf of an ad that was designed in InDesign. To use with our Ad Management system our workflow is to flatten...
    2. flow text vertically page to page in table?
      Can someone help with this? I'm setting up a long table with lots of information in each column. I want the text to flow from page to page. I want...
    3. table drifts on page
      I'm not sure if this is a Cold Fusion issue or Dreamweaver issue, but when clicking on recordset page links like 'Next Set' for example, the table...
    4. Login - multi table insert for registrant; subsquent login insert page requests into joined 'Selection' Table
      Question regards insert and updates in sql server for a simple login script that requires registration the first time and only "email address" upon...
    5. Does everything on the page need to be in a table?
      Hi, I had a thought and just wanted to ask if everything such as images, nav bars, text etc on the page need to be in its own table? Jill
  3. #2

    Default Re: table compression on web page

    Use CSS to align the background to the right hand side of the table!

    ie

    ..unnamed1 {
    background-image: url(yourImage.gif);
    background-position: right;
    }
    Stressed_Simon Guest

  4. #3

    Default Re: table compression on web page

    how do i call out in background tag

    ..td1 {
    background-image: url(art/ecc4.jpg);
    background-position: right;
    }


    <tr>
    <td width="42%" background="????">&nbsp;</td>
    </tr>

    tnx again
    ranger Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139