Jump to content

problem with table


kvnirvana

Recommended Posts

Any idea why the I cant get the text "Find" to be font-size:110% like I've set it to?

 

 

echo "   <form name='search' action=".$_SERVER['PHP_SELF']." method='post'>         <table width='50%' align='center' style='position:relative;center:0px;top:30px;z-index:1>	<tr>           <td colspan='2' style='font-family:verdana;font-size:110%'><strong>Find</strong></td><br></br>         </tr>         	<tr>           <td align='right' style='font-family:verdana;font-size:110%;'>Bebe:</td><td><select name='bebe'style='font-size: 18px;'><option value='all'>All</option><option value='Fy'>Fy</option><option value='Kir'>Kir</option></td>         </tr> </select>        <tr>           <td align='right' style='font-family:verdana;font-size:110%;'>Om:</td><td><select name='om' style='font-size: 18px;'><option value='all'>All</option><option value='F'>F</option><option value='S'>S</option><option value='j'>J</option></td>         </tr> </select>        <tr>           <td align='right' style='font-family:verdana;font-size:110%;'>Pr:</td><td><select name='pr' style='font-size: 18px;'><option value='all'>All</option><option value='ry'>Ry</option><option value='am'>Am</option></td>         </tr> </select>                    </tr>         	<tr>           <td colspan='2' align='center' ><input type='submit' name='submit' style='font-size: 15px;' value='Search!'></td>         </tr>  </table></form>	 <table> <td style='position:absolute;right:18px;top:36px' 'tdimage'  BACKGROUND='for1.jpg' width='290' height='600'></td></tr>        </table>" ;         

 

Link to comment
Share on other sites

My guess would be that it is because you have it encased in the STRONG tag. Try removing those tags, and applying the font-weight attribute to your styling, like so:

echo "
   <form name='search' action=".$_SERVER['PHP_SELF']." method='post'> 
        
<table width='50%' align='center' style='position:relative;center:0px;top:30px;z-index:1>

	<tr> 
          <td colspan='2' style='font-family:verdana;font-size:110%;font-weight:bold;'>Find</td><br></br> 
        </tr> 
        
	<tr> 
          <td align='right' style='font-family:verdana;font-size:110%;'>Bebe:</td><td><select name='bebe'style='font-size: 18px;'>
<option value='all'>All</option>
<option value='Fy'>Fy</option>
<option value='Kir'>Kir</option>
</td> 
        </tr> </select>
        <tr> 
          <td align='right' style='font-family:verdana;font-size:110%;'>Om:</td><td><select name='om' style='font-size: 18px;'><option value='all'>All</option>
<option value='F'>F</option>
<option value='S'>S</option>
<option value='j'>J</option></td> 
        </tr> </select>
        <tr> 
          <td align='right' style='font-family:verdana;font-size:110%;'>Pr:</td><td><select name='pr' style='font-size: 18px;'><option value='all'>All</option>
<option value='ry'>Ry</option>
<option value='am'>Am</option>
</td> 



        </tr> </select>
  
          
        </tr> 
        
	<tr> 
          <td colspan='2' align='center' ><input type='submit' name='submit' style='font-size: 15px;' value='Search!'></td> 
        </tr>  </table></form>

	 <table> <td style='position:absolute;right:18px;top:36px' 'tdimage'  BACKGROUND='for1.jpg' width='290' height='600'></td></tr>
        </table>" ; 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.