Thanks for the responses. Hey rudy your code helped me get this the way
I want it. The problem is that I'm having a hard time filling in the
white space between the colums and tables. I'd like for that complete
table to be filled in with the same color of the table itself. This I'm
hoping would remove the space that appears between it and the 2nd row.
What am I doing wrong? I've added the bordercolor attribute but it isn't
working. Here's my modified code: 

<table width="100%" border="0" bordercolor="#afafaf">
     <tr bgcolor="afafaf" bordercolor="#afafaf">
     <td align="left" bordercolor="#afafaf">
         <a href="http://www.nusolutions.biz";>
         <img src="images/nusolhdr48.gif" width="197" height="36"
alt="logo" border="0"&copy;></a></td>
     <td align="right" bordercolor="#afafaf">
         <img src="images/solbnr.gif" width="428" height="60"
alt="ad"></td>
     </tr>
     <tr bgcolor="003366" bordercolor="afafaf">
     <td colspan="2" align="right" bordercolor="#afafaf"><font
color="#f8f8f8" size="2" face="Verdana, Arial, Helvetica, sans-serif">
       <p>
       <a href="http://www.nusolutions.biz/about.html"; title="About Us"
target="_parent"
                >About Us </a> |
       <a href="http://www.nusolutions.biz/solutions.html";
title="Solutions" target="_parent"
                >Solutions</a> |
       <a href="http://www.nusolutions.biz/tech.html";
title="Technologies"   target="_parent"
                >Technologies</a> |
       <a href="http://www.nusolutions.biz/contact.html"; title="Contact"
target="_parent"
                >Contact</a>
       </p></font></td>
     </tr>
 </table>

Can anyone assist with this? 
TIA

-----Original Message-----
From: rudy [mailto:[EMAIL PROTECTED] 
Sent: Saturday, June 21, 2003 5:19 PM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: [wdvltalk] Re: Best way to add 2 images to the same row???


> Can someone advise me on the best way to resolve a
> problem I'm having trying to align 2 images ...
>    http://www.nusolutions.biz/about.html

depends on what your definition of "best" is

easiest?  two cells on the images row, colspan="2" on the navbar row

when you put align on the img tag, it defines how the image is placed
relative to other inline content -- e.g. to wrap text around an image 

what you want is to align the contents of the cells


     <table>
     <tr>
     <td align="left">
         <a href="/">
         <img src="images/nusolhdr48.gif"
              width="197" height="36" alt="logo" /></a></td>
     <td align="right">
         <img src="images/solbnr.gif"
              width="428" height="50" alt="ad" /></td>
     </tr>
     <tr>
     <td colspan="2" align="right">
       <p>
       <a href="/about.html" title="About Us"      target="_parent"
                >About Us </a> |
       <a href="/solutions.html" title="Solutions" target="_parent"
                >Solutions</a> |
       <a href="/tech.html" title="Technologies"   target="_parent"
                >Technologies</a> |
       <a href="/contact.html" title="Contact"     target="_parent"
                >Contact</a>
       </p></td>
     </tr>
     </table>

you're not thinking of using frames, are you?

rudy
http://r937.com/


____ . The WDVL Discussion List from WDVL.COM . ____
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
       Send Your Posts To: [EMAIL PROTECTED]
To change subscription settings to the wdvltalk digest version:
    http://wdvl.internet.com/WDVL/Forum/#sub

________________  http://www.wdvl.com  _______________________

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED] To
unsubscribe send a blank email to %%email.unsub%%


____ • The WDVL Discussion List from WDVL.COM • ____
To Join wdvltalk, Send An Email To: mailto:[EMAIL PROTECTED] 
       Send Your Posts To: [EMAIL PROTECTED]
To change subscription settings to the wdvltalk digest version:
    http://wdvl.internet.com/WDVL/Forum/#sub

________________  http://www.wdvl.com  _______________________

You are currently subscribed to wdvltalk as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]

Reply via email to