|
Hi I have a header whocse width content is set as 100 percent as below.And including this header in other page.
Now I am accessing data from table and that table contents having more length than this header so there is some white space in right of the page.which is don't want.
to increase the leangth of header to 150 but another problem coming that when i make the window screen smaler table content size is not reduced but header size is reduced and white space again visible
relevant things in css are header jsp ar as below
1)
{
width:100%;
}
td.logotd
{
font-family:Arial,Fritiger;
font-size:20px;
font-weight:bold;
color: #D40511;
align:right;
white-space:nowrap;
2) <table class="logotable" >
<tr>
<td class="logotd"><html:img page="/images/m.gif" width="183" height="47"/></td>
<td class="logotd" >how r u</td>
</tr>
}
|