I made an Accordion for my web page, but i cant set the size of my content's accordionPAne , not matter where i put the attribute height:
<ajaxToolkit:Accordion ID="MyAccordion" runat="server"
SelectedIndex="0"
HeaderCssClass="accordionH
eader"
ContentCssClass="accordion
Content"
FadeTransitions="true"
FramesPerSecond="40"
TransitionDuration="250"
AutoSize="None"
Height = "400px"
>
<Panes>
<ajaxToolkit:AccordionPane
ID = "AccordionPane1" runat = "server" >
<Header>
<a href = "" onclick = "return false;" class = "accordionLink"> </a>
<asp:Label ID="Label10" runat="server" Text="Plan de ruteo" CssClass="headerText" ForeColor="White"></asp:La
bel>
</Header>
<Content>
<div ID="routeresults"
style="width:273px; background-color:"#FF
FFFF"
; height: 20px; text-align: left; line-height: normal; font-family: Arial; font-size: x-small; font-weight: bold; font-style: normal; font-variant: normal; color: #000000;"
align="center">
</div>
</Content>
</ajaxToolkit:AccordionPan
e>
<ajaxToolkit:AccordionPane
ID = "AccordionPane2" runat = "server">
<Header>
<a href = "" onclick = "return false;" class = "accordionLink"> </a>
<asp:Label ID="Label11" runat="server" Text="Itinerario" CssClass="headerText" ForeColor="White"></asp:La
bel>
</Header>
<Content>
</Content>
</ajaxToolkit:AccordionPan
e>
</Panes>
</ajaxToolkit:Accordion>
in this example i set the height inside the Accordion tag but doesnt work, also i tried to set the height inside the CSS and not works... if i set the value of AutoSize to "Limit" or "Fill" the accordion disappears. I cant do it from the Design view because the accordion doesn't render... please help!!!
in the image i show how the accordion looks like... i need more space!!!