Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need to get rid of the table border. 1

Status
Not open for further replies.

bean1234

Technical User
Nov 14, 2006
45
US
Hello All,

I have table which incldues asubmit button also is the last row, howeevr even after I give border =0 for the encompassing table I see that there is a line that basically surrounds the td representing the button, in other words the td appears as a block with a line.I dont want the line to appear.Please look at the following code.

Code:
<table class="parent"  align="center" cellpadding="0" cellspacing="0" border="0">
         <tr class="d2">
             <th colspan="4">
                 Search Users
             </th>
         </tr>
         <tr class="d0">
              <td>Name:</td>
              <td>
                  <input type="hidden" name="wlw-select_key:{actionForm.nameType}OldValue" value="true"><select name="wlw-select_key:{actionForm.nameType}" id="wlw-select_key:{actionForm.nameType}"><option value="first_name" selected>First Name</option>
                       <option value="last_name">Last Name</option></select>
                </td>
                <td>
                    <input type="hidden" name="wlw-select_key:{actionForm.condition}OldValue" value="true"><select name="wlw-select_key:{actionForm.condition}" id="wlw-select_key:{actionForm.condition}"><option value="equals">Equals</option>
                         <option value="startsWith" selected>Starts With</option>
                         <option value="contains">Contains</option></select>
                 </td>
                 <td>
                        <input type="text" name="{actionForm.nameValue}" id="{actionForm.nameValue}" value="A">
                 </td>
          </tr>
               
          <tr >
                <td colspan="4">
                <br><br>
                            <input type="submit" value="Search">
                </td>            
           </tr>               
</table>
 
Thanks Brooks!Actually I had an entry in the stylesheet with border: 1px that I didnt notice, thanks for pointing that out.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top