Because your tool uses iframes is it impossible to align the drop down items properly in IE6 when placed in a css centered div.
This is a standard method for center aligning pages, I will not accept any answer that suggests any other centering method.
Below is the relevant css for my page:
The relevant aspx is as follows:
Your recommendations for a fix here would be appreciated,
Robert
This is a standard method for center aligning pages, I will not accept any answer that suggests any other centering method.
Below is the relevant css for my page:
| body { text-align:center;} |
| #page {margin:0 auto; text-align:left; width:960px} |
The relevant aspx is as follows:
| <div id="page"> |
| <telerik:RadComboBox ID="Discipline" Runat="server" DataSourceID="DisciplineDS" EnableLoadOnDemand="true" DataTextField="Discipline" DataValueField="Discipline" EmptyMessage="select discipline" AppendDataBoundItems="true" OnSelectedIndexChanged="Discipline_Changed" AutoPostBack="true" Width="195px" > |
| <Items> |
| <telerik:RadComboBoxItem Text="All disciplines" Value="" /> |
| </Items> |
| </telerik:RadComboBox> |
| </div> |
Your recommendations for a fix here would be appreciated,
Robert
