Levaing a cell bg blank when theres a table bg

hey guys,
I have a little issue im trying to figure out. I have a table with a bg image and i need one of the cells in the table to be blank. So bascially the bg image would be starting directly under the first cell. My code is below and the cell i want blank is highlighted in blue. help would be great!
Thanks
<table class="LandingBottom3" width="580">
<tr>
<td colspan="4" align="center"><span class="ProductHeadings">Board Games </span></td>
</tr>
<tr>
<td align="center"> </td>
<td align="center"> </td>
<td align="center"> </td>
<td align="center"> </td>
</tr>
<tr>
<td align="center"><a href="SearchResult.aspx?CategoryID=402"><img src="Images\StationeryLanding\cardgames.png" width="95" height="75" border="none" alt="Card Games" title="Card Games"/></td>
<td align="center"><a href="SearchResult.aspx?CategoryID=405"><img src="Images\StationeryLanding\childrensgames.png" width="95" height="75" border="none" alt="Childrens Games" title="Childrens Games" /></td>
<td align="center"><a href="SearchResult.aspx?CategoryID=404"><img src="Images\StationeryLanding\familygames.png" width="95" height="75" border="none" alt="Family Games" title="Family Games" /></td>
<td align="center"><a href="SearchResult.aspx?CategoryID=403"><img src="Images\StationeryLanding\strategygames.png" width="95" height="75" border="none" alt="Strategy Games" title="Strategy Games" /></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr class="bodytext2">
<td align="center"><a href="SearchResult.aspx?CategoryID=402">Card Games</a></td>
<td align="center"><a href="SearchResult.aspx?CategoryID=405">Childrens Games</a></td>
<td align="center"><a href="SearchResult.aspx?CategoryID=404">Family Games</a></td>
<td align="center"><a href="SearchResult.aspx?CategoryID=403">Strategy Games</a></td>
</tr>
<tr class="bodytext3">
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr class="bodytext3">
<td align="center"><a href="SearchResult.aspx?CategoryID=402" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('View More','','Images/StationeryLanding/viewmore_white_small2.png',1)"><img src="Images\StationeryLanding\viewmore_white_small.png" width="102" height="24" name="View More" border="0"/></a></td>
<td align="center"><a href="SearchResult.aspx?CategoryID=405" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('View More2','','Images/StationeryLanding/viewmore_white_small2.png',1)"><img src="Images\StationeryLanding\viewmore_white_small.png" width="102" height="24" name="View More2" border="0"/></td>
<td align="center"><a href="SearchResult.aspx?CategoryID=404" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('View More3','','Images/StationeryLanding/viewmore_white_small2.png',1)"><img src="Images\StationeryLanding\viewmore_white_small.png" width="102" height="24" name="View More3" border="0" /></td>
<td align="center"><a href="SearchResult.aspx?CategoryID=403" onMouseOut="MM_swapImgRestore()" onMouseOver="MM_swapImage('View More4','','Images/StationeryLanding/viewmore_white_small2.png',1)"><img src="Images\StationeryLanding\viewmore_white_small.png" width="102" height="24" name="View More4" border="0"/></td>
</tr>
<tr class="bodytext3">
<td colspan="4" align="center"><span style="font-size:1pt"> </span></td>
</tr>
<tr>
<td colspan="4"></td>
</tr>
</table>

This structure would be better -
<table border="0" cellspacing="0" cellpadding="0" width="580">
<tr>
  <td align="center" class="ProductHeadings">Board Games</td>
</tr>
</table>
<table class="LandingBottom3" width="580">
<tr>
<td>...</td>
</tr>
<tr>
don't you think?

Similar Messages

  • CD drive  not reading Audio or Photos intel core 2 duo Mac - says there is nothing on disc / Blank  - Is there a fix ??

    CD drive  not reading Audio or Photos
    intel core 2 duo Mac -
    says there is nothing on disc / Blank  - When there is
    Is there a fix ??

    At the Apple Icon at top left>About this Mac, then click on More Info, then click on Hardware>Disc Burning & report what it says, like ...
    Interconnect: ATAPI
    Burn Support: Yes (Apple Shipped/Supported)
    Cache: 2048 KB
    Reads DVD: Yes
    CD-Write: -R, -RW
    DVD-Write: -R, -RW, +R, +RW, +R DL
    Burn Underrun Protection CD: Yes
    Burn Underrun Protection DVD: Yes
    Write Strategies: CD-TAO, CD-SAO, CD-Raw, DVD
    Have you done a PRAM reset, CMD+Option+p+r...
    http://support.apple.com/kb/HT1379
    In fact, do 3 in a row, takes a bit of time.

  • How do I get a 0 to display when a count = 0 (zero)? (The cell is blank)...

    (Running Business Objects Release 2 (Web-I), No other reporting modules)
    How do I get a 0 to display when a count = 0 (zero)? (The cell is blank)...
    In my reports, I count the number of tests of one of our products and another count on the number of failures.  I then use a simple formula to give me the defect rate percentage (DR%)
    The universe objects used in the calculation are:
    Assembly Number (dimension)
    Human Sn (dimension)
    Test Code Description (dimension)
    I created a variable (called [Count Assys]) that counts the number of Assemblies Tested:
    Formula: =Count([Assembly Number];All)
    Another variable (called [Failed Count]) counts the number of failed tests:
    Formula: =Count([Test Code Description];All) Where ([Test Code Description] <> "FUNCTIONAL TESTS PASSED")
    NOTE: There is a "not equal to sign" between [Test Code Description] and "FUNCTIONAL..." above, but the forum is blanking it when I preview the message.  Not a big deal, but it may be important for someone looking to help...
    I then have a third variable called [DR%] that divides [Failed Count] into the number of [Count Assys], which yields a number formatted as a percentage.
    Formula: =[Failed Count]/[Count Assys]
    The above works great! 
    The problem is: when I have a zero defect count (everything passes), the cell is blank, so the percentage variable remains blank.  I want a zero (0) to appear if nothing failed so the percentage appears as 0%
    I've searched this forum completely and have tried several Properties changes and different variable strings (like =If([Failed Count]<1,0) and the cell stays blank and cannot come up with an answer.
    This one seems simple to me, but everything I've tried has yielded zero <smile> results.
    Thanks,
    Charles
    Edited by: Charles Norman on Dec 9, 2008 12:44 PM
    Edited by: Charles Norman on Dec 9, 2008 12:47 PM

    Hi Charles,
    Use [Dr%] Variable formula as =if(IsNull([Dr%]);0;[DR%])
    Here IsNull returns the Boolean value of variable [Dr%] if its true then inserts 0 else the percentage values of failed tests based on the  total number of assembly tests performed.
    I Hope this is what you want to achieve....
    Thanks....
    Pratik

  • How to avoid printing a blank page when there is 'no data' in the report.

    how to avoid printing a blank page when there is 'no data' in the report.

    try like this
    if@section:IND=1
    this template
    end ifsectionbreak
    if@section:IND=2
    this template
    end if

  • How to fill column value of a matrix with specific color when there is no value in that specific cell?

    Hi All,
    I need to create a 5/5  matrix in SSRS report. The data will be :
    Col_Side   Col_Header   Col_data
    1                  1                1
    1                  1                 1
    1                  2                1
    1                  5                1
    1                  5                1
    1                  5                1
    2                  3                1
    2                  5                1
    3                  1                2
    3                  1                2
    3                  1                2
    4                   2               1
    4                   4               1
    5                   1               1
    5                   1               1
    5                   5               1
    So, the matrix column will be Col_Header and matrix row will be Col_Side and count(Col_data) will be on the data.
    Finally, it will create a 5 by 5 matrix with Count(Col_data) as its data for each combinations. If there is no combination (for ex: in the above data we do not have no combination of (1,3) , (1,4) , (2,1) etc..) then the matrix will be filling that corresponding
    cell with zero.
    Here I need to fill the cells with some colors based on some criteria.
    I need to fill (5,3), (5,4), (5,5) combination with "Red" color.  Like this , I need to give different colors in each of the cells. Here, (5,5) combination will be having 1 in its cell.  (5,4) and (5,3) will be having zero in its corresponding
    cells. I 'm trying to fill all the 3 cells with "Red" color. But, I am able to fill only (5,5) with "Red" color. Since the other 2 cells (5,3) and (5,4), has zero in their cells, it will not fill the cells with "Red" color. 
    How can I fill those two cells (5,3) and (5,4) with red color?
    I know this is very vague. I have no option to give the picture here..
    Please suggest

    Hi Julie,
    According to your description, there is a 5/5 matrix with three fields: Col_Side, Col_Header, Col_data. You drag Col_Side field to Rows, Col_Header to Columns and Col_data to Data, then filling blank cells with zero using expression. Now you want to fill 
    (5,3), (5,4), (5,5) cells with red color using expression, but it has no effect on cells (5,3) and (5,4).
    According to my test, the expression has on effect on cells (5,3) and (5,4) since there is no corresponding data and the cells are blank. As a workaround, we can insert data for cells (5,3) and (5,4) in dataset, then use expression by following steps:
    In the dataset, insert two sets of data (5,3,0), (5,4,0).
    Right-click the cell of data, click Text Box Properties.
    Click Fill in left pane, click (fx) button, then type the expression like below, then click OK.
    =iif(Fields!Col_Side.Value=5 and Fields!Col_Header.Value >=3 ,"red","white" )
    The following screenshot is for your reference:
    If you have any more questions, please feel free to ask.
    Thanks,
    Wendy Fu

  • When i go to send a new text, the text field isn't blank.  There is already text entered in the message body.

    When i go to send a new text, the text field isn't blank.  There is already text entered in the message body that I have to go in and delete before typing my new text.  this prevents me from forwarding anything through text because if I get something I wish to forward, selecting forward as an option always brings up the same junk just like when trying to send a new message.  How can i remedy this?

    Here it goes -
    1) Download iBackupBot: http://download.cnet.com/iBackupBot/3000-2141_4-10969873.html
    2) Plug phone into computer and run backup
    3) Use "Explorer" box to find Messages: HomeDomain/Library/SMS/Drafts/(null).draft/
    4) In "Null Drafts" there is a file "message.plist"
    5) Double click to open, (cancel the popup if you did not purchase the iBackupBot) and you will see the prepopulating message on the <string> line 6
    6) Delete the offending text, leave all code
    7) Close text editor
    8) Right click on message.plist file and select "Restore selected item(s) to device"
    9) File will be restored to your phone and it will restart itself.
    10) Voila! Now it is time to consider that Windows phone....:)

  • My iPad screen went black suddenly and is not coming back on. However i can still hear sounds when there are notifications but nothing comes on the screen. It remains blank. What is the problem? I NEED ASSISTANCE A.S.A.P!!!

    My iPad screen went black suddenly and is not coming back on. However i can still hear sounds when there are notifications but nothing comes on the screen. It remains blank. What is the problem? I NEED ASSISTANCE A.S.A.P!!!

    Try Reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

  • I can not read any contents in my yahoo inbox messages? It is blank when i opened my message. Are there any setting or updated that i missed? Please give me some advices? Thank you. Phuong

    Question:
    I can not read any contents in my yahoo inbox messages? It is blank when i opened my message. Are there any setting or updated that i missed? Please give me some advices? Thank you. Phuong

    Hi AM_Kidd.
    Thanks for your reply.
    I have done a complete uninstall and re install of iTunes and all related apple programs from my laptop through control panel, add remove programs and also by going through program files and deleting all tracers of any left over folders remove programs may have missed.
    My apologies for forgetting to add this in my original post.
    Thanks again

  • I have the kin 2 and whenever I turn it on, it does the introduction (pictures, ect.) and the pictures go on for about 3 minuets. but then when it is done, the screan turns blank. is there any way to fix this problem?

    I have the kin 2 and whenever I turn it on, it does the introduction (pictures, ect.) and the pictures go on for about 3 minuets. but then when it is done, the screan turns blank. is there any way to fix this problem?

    I have the EXACT same problem. I just got done talking with Verizon, and a replacement is on the way.

  • Solar cell charging battery and load at the same time When there is Sun , When there is no sun , the battery take over and power up the Load

    Hi 
    Im currently doing a project using LabVIEW and myDAQ where i have to use the solar cell to charge the battery and turn on the load ( LED) when there is light
    and once the the solar cell is unable to detect the light , the battery will power the load instead of the solar cell
    i am having some problems with labview programing ( unable to work )
    Does anyone has something similar that i could reference to ?
    Thanks 

    Good to see that you found the LabVIEW forum, but you have not added any more information than what you posted on the Reddit LabVIEW forum.  
    The people here will also need more information about what is not working, be as specific as possible.  I will also repeat that you can replace the inputs with controls and the outputs to indicators so you have more control over the code to test it.  Then introduce the real IO when you have the code working like you want it to.
     

  • Input Query with blanks when we press transfer values option

    I have an input query with 12 restricted key figures, but when I enter data and press on 'Transfer Values' or 'Save Values', the cells are blanked out (i.e. the values dissapear) and the data is not updated into the cube. I have done the following:
    In Query Designer, I have checked the attribute 'Start Query in Change Mode' and
    For all restricted key figures that needs to be planned, I have marked as 'Data can be changed using user entries and planning functions...'
    Can you please let me know your thoughts around this.
    Thanks,
    Srini

    Mayank,
    I have 10 characterstics(cost center, cost element, cost type, fiscal year period,fiscal year, version, value type, posting period, detail valye type, currency type+1kf(0amount)) in my aggregation level.
    I have created 12 rkf for each month with the following restrictions
    Plan rkf (sub rkf) with restrictions to
    fiscal year(variable), inforprovider-real time cube, value type 20, kf-0amount,
    jan plan rkf.....dec plan rkf has
    kf--Plan rkf(sub rkf) +  posting period 1...12(one for each month),
    And i have created an input query with the following fields
    unders rows
    Cost type, cost element
    under Columns
    Jan paln rkf to Dec plan rkf
    filters for controlling area EA
    I have change the query defination to "start query change mode" and also set all the rkf properties to "change by user enteries and/or planning options"
    So, is there anything i am missing here?
    Do i have to all characterstics of my aggregation level in my input query? or do i have to restrct my rkf to any curreny/unit fields? Please shed some light in here....:)
    Thanks for your help...
    Srini

  • Bug: Bookmarks do not show up on the browser when there is no connection

    Pre is not showing bookmark icons when there is no internet connection.
    I am currently on international roaming with no data connection, but am using the Pre over WiFi. The Pre turns off WiFi when not in use, and then reconnects as soon as i turn it on. 
    However, it takes a few seconds to reconnect to WiFi, and if I open the browser in the mean time, it just opens a blank window with no bookmarks. It has the address bar, but doesn't really work.
    If I open the browser once it has connected to WiFi, everything works fine.
    Post relates to: Pre p100eww (Sprint)

    Same thing happens in Airplane mode.  I'll pass this along.... thanks!
    (You can't even edit full bookmarks list, either.  I can understand, kinda, not displaying the icons as their only purpose it to launch a data connection to the site, which obviously you're not going to do when not connected to data.  But IMO, you should still be able to organize your bookmarks, which doesn't look like you can do)

  • Need to add a blank row to a table when checkbox selected

    Hi ALL,
    I have a custom page having 2 check boxes and few fields , i am doing search operation by entering one checkbox checked and few other fields and data displaying in table region.
    my requirement is when i select second check box and click one button as add new row it should create a blank row in the table, means table should  availabe with a blank row so that user can insert data,
    please help me on thsi
    Thnaks

                 Hi there ,
                 If you 're working with advance table then you have an default option to create a blank row , please through topic 'add another row '
                 in jdev guide .
                 If you are working the regular table region then you might follow the below code suggested .
                 Create a new item of the type button ( not submit button ) and handle the event in PFR of your controller class
                String addRow=pageContext.getParameter(EVENT_PARAM);   //  "addRow " is an event attached to table
                if("addAnotherRow".equals(addRow))  
                      am.invokeMethod("AddRow");
              In AMimplementation class :
       public void AddRow()
        OAViewObject headerVO = (OAViewObject)getsdaPacelineWorkupHeaderUpdateVO1();
        sdaPacelineWorkupHeaderUpdateVORowImpl rowh = (sdaPacelineWorkupHeaderUpdateVORowImpl)headerVO.getCurrentRow();
        rowh.getPacelineHeaderId();
        OAViewObject lineVO = (OAViewObject)getsdaPacelineWorkupLineUpdateVO1();
        Row lineRow = lineVO.createRow();
        Row lineRo = lineVO.last();
        lineRow.setAttribute("PacelineHeaderId",rowh.getPacelineHeaderId());   
        lineRow.setNewRowState(Row.STATUS_INITIALIZED);
        lineVO.last();
        lineVO.next();
        lineVO.insertRow(lineRow);
        lineVO.setCurrentRow(lineRow);
        lineVO.setCurrentRow(lineVO.last());
      Note : Replace your vo name in place of sdaPacelineWorkupHeaderUpdateVO1()
       Please let me know if you have any questions .
      Regards ,
    Keerthi

  • After several years of use very satisfied with Firefox, recently loaded version (4.0.1) severely slows my browsing, and even my system, especially when there are pictures or videos. I said that this was not the case before and my system is Windows XP SP3.

    After several years of use very satisfied with Firefox, recently loaded version (4.0.1) severely slows my browsing, and even my system, especially when there are pictures or videos. I said that this was not the case before and my system is Windows XP SP3.

    I have had a similar problem with my system. I just recently (within a week of this post) built a brand new desktop. I installed Windows 7 64-bit Home and had a clean install, no problems. Using IE downloaded an anti-virus program, and then, because it was the latest version, downloaded and installed Firefox 4.0. As I began to search the internet for other programs to install after about maybe 10-15 minutes my computer crashes. Blank screen (yet monitor was still receiving a signal from computer) and completely frozen (couldn't even change the caps and num lock on keyboard). I thought I perhaps forgot to reboot after an update so I did a manual reboot and it started up fine.
    When ever I got on the internet (still using firefox) it would crash after anywhere between 5-15 minutes. Since I've had good experience with FF in the past I thought it must be either the drivers or a hardware problem. So in-between crashes I updated all the drivers. Still had the same problem. Took the computer to a friend who knows more about computers than I do, made sure all the drivers were updated, same problem. We thought that it might be a hardware problem (bad video card, chipset, overheating issues, etc.), but after my friend played around with my computer for a day he found that when he didn't start FF at all it worked fine, even after watching a movie, or going through a playlist on Youtube.
    At the time of this posting I'm going to try to uninstall FF 4.0 and download and install FF 3.6.16 which is currently on my laptop and works like a dream. Hopefully that will do the trick, because I love using FF and would hate to have to switch to another browser. Hopefully Mozilla will work out the kinks with FF 4 so I can continue to use it.
    I apologize for the lengthy post. Any feedback would be appreciated, but is not necessary. I will try and post back after I try FF 3.16.6.

  • Display 'No Data Found' when there is inv data but still there is xml data

    Hi,
    I am converting an rdf to BI publisher. The issue is when there is no detail (inv) but still there is still xml data , due to which the report is getting printed with the skeleton template and blank details(inv).
    I need to avoid printing the report out if there is not inv detail even though there is xml data. or atleast show 'NO DATA FOUND' msg. and print the report output only when there is inv data.
    Any help is greatly appreciated.
    sample XLM generated when there is inv data:
    - <ARXCBI>
    - <LIST_G_SETUP>
    - <G_SETUP>
    <COMPANY_NAME>GL SOB</COMPANY_NAME>
    <FUNCTIONAL_CURRENCY>USD</FUNCTIONAL_CURRENCY>
    <COA_ID>23456</COA_ID>
    <SET_OF_BOOKS_ID>1</SET_OF_BOOKS_ID>
    <LIST_G_SITES />
    <REPORT_NAME>Billing Invoice</REPORT_NAME>
    <SUB_TITLE />
    </G_SETUP>
    </LIST_G_SETUP>
    <RP_COMPANY_NAME>GL SOB</RP_COMPANY_NAME>
    <RP_REPORT_NAME>Billing Invoices</RP_REPORT_NAME>
    <RP_DATA_FOUND />
    <RP_SUB_TITLE />
    <R_DEFAULT_COUNTRY>US</R_DEFAULT_COUNTRY>
    <R_DEFAULT_COUNTRY_DESC>United States</R_DEFAULT_COUNTRY_DESC>
    <T_REPORT_TOTAL />
    <RP_COUNTER />
    <INV>Invoice</INV>
    <CM>Credit Memo</CM>
    <ADJ>Adjustment</ADJ>
    <XREV>Reverse Cross Site Credit Memo</XREV>
    <XAPP>Apply Cross Site Credit Memo</XAPP>
    </ARXCBI>
    Thanks!

    Hi Srini,
    Now I am running into another problem. When there is no detail data it displays 'No data found' as expected in the report output. But is there any way to restrict the print option (avoid wasting the paper) to just display 'No data found' in the output but not to print the output only in this case.
    I really appreciate any help!

Maybe you are looking for

  • Sinlge-thread program in multiple Java VM.

    I have a program that spawns two threads: one reads text line by line from a file, and places it in a LinkedBlockingQueue; The other takes stuff off the LinkedBlockingQueue, and processs it (no output to other file). Therefore this is a typical Produ

  • Opening a pdf file automatically opens last 13 pdf files viewed

    I use Adobe Acrobat a lot and for some reason, I opened a pdf document yesterday and the last 13 files I viewed automatically opened.  I rebooted my computer and it still does the same thing. Does anyone know how to switch off this automation? Apprec

  • 1.3 years of ****, now I tell

    1.3 years ago I purchased a VCR to PC program for 1000 foreign film collection, Didn't realize it needed Windows. Spent 2 months learning about the phenomena of WIndows. Purchased a copy on line. It went all the way to set up, then quit. Got back to

  • Error opening Visio documents in Portal KM

    Hello, When I try to open a visio document (.vsd), the error "the page cannot be displayed..." appears, although I have installed the Microsoft Office Visio 2003. why it happens this? If I Uninstall the program (Visio 2003) and only installed the Vis

  • Bootable backup software

    First of all, what's a bootable backup? I have a WD 320GB Mybook (fire wire/usb) backup drive. WD said that their included software doesn't create a bootable drive. I asked them because I told it to back up everything and it did except for 168 files.