I am using the latest Telerik controls Q1 2009 (not SP1) and no matter what I do the base stylesheet is always embedded on the page.
I implement a custom skin for a RadMenu. In the skin file I have the following:
I only have ONE RadMenu throughout the entire solution, and it is on a Masterpage. The declaration for the menu on the page is the following:
Somehow the base stylesheet is still being embedded on the page. I am also using some other Telerik controls on the page such as: TreeView, Grid, Tabstrip...
The main thing I need to fix is the way menus float left by default:
I really just want it to appear as a block-level element. Any suggestions or ideas on how to overcome this? Thanks.
----
Edit: I've actually just removed every RadMenu from this project and the base stylesheet for RadMenu is still included on the page. Is this being referenced by another Telerik control somehow?
I implement a custom skin for a RadMenu. In the skin file I have the following:
| <telerik:RadMenu runat="server" Skin="Default" EnableEmbeddedBaseStylesheet="false" /> |
| <telerik:RadMenu runat="server" Skin="Subnav" SkinID="Subnav" EnableEmbeddedSkins="false" EnableEmbeddedBaseStylesheet="false" /> |
I only have ONE RadMenu throughout the entire solution, and it is on a Masterpage. The declaration for the menu on the page is the following:
| <telerik:RadMenu runat="server" ID="navigationMenu" SkinID="Subnav" EnableEmbeddedBaseStylesheet="false">...... |
Somehow the base stylesheet is still being embedded on the page. I am also using some other Telerik controls on the page such as: TreeView, Grid, Tabstrip...
The main thing I need to fix is the way menus float left by default:
| .RadMenu { |
| float:left; |
| position:relative; |
| whitewhite-space:nowrap; |
| } |
I really just want it to appear as a block-level element. Any suggestions or ideas on how to overcome this? Thanks.
----
Edit: I've actually just removed every RadMenu from this project and the base stylesheet for RadMenu is still included on the page. Is this being referenced by another Telerik control somehow?