Hi,
I am trying to create a login panel for my website. I need to add a bar at that will stay always at the bottom, even when scrolling down the page. So the panel will open/slide up on click.
This is what I have so far. the problem is that the panel is 100% of the Height even when I set it to 42px.
See attachments to have a better idea of what I'm trying to create.
Thank you.
I am trying to create a login panel for my website. I need to add a bar at that will stay always at the bottom, even when scrolling down the page. So the panel will open/slide up on click.
This is what I have so far. the problem is that the panel is 100% of the Height even when I set it to 42px.
<style type="text/css">
.login-badge{ width:100%; height:42px; display:block; position:absolute; bottom:0; left:0; background-color:Black; z-index:9999; }
</style>
<telerik:RadSplitter ID="RadSplitter1" runat="server" FullScreenMode="true" CssClass="login-badge" > <telerik:RadPane ID="RadPane1" runat="server"> <telerik:RadSlidingZone ID="RadSlidingZone1" runat="server" SlideDirection="top" > <telerik:RadSlidingPane ID="RadSlidingPane1" runat="server" EnableDock="false"> </telerik:RadSlidingPane> </telerik:RadSlidingZone> </telerik:RadPane>
</telerik:RadSplitter> See attachments to have a better idea of what I'm trying to create.
Thank you.