Ionic Sub-footer Not Fixed At Bottom
I have created a footer and a sub-footer to show parameters. Now my footer stays at bottom but the sub footer is going exactly after the content. Or some times it is going behind c
Solution 1:
I got the solution of sub footer. Actually my implementation was wrong. Sub footer is to be implemented in following way. might be useful for any one else.
<ion-footer-bar class="bar-subfooter" class="bar-assertive"> <div class="modeContainer">
<div class="mode modeText ">
<div class="">
Mode:
Modulated Mode
</div> </div> </div> </ion-footer-bar> <ion-footer-bar>
<div class="bottomcontainer">
<span class="fontClass">
Intensity:
Low
</span>
<div class="vertical-line"> </div>
<span class="fontClass">
Duration:
20 Min
</span>
<div class="vertical-line"> </div>
<span class="fontClass">
OnTime:
10 Sec
</span>
<div class="vertical-line"> </div>
<span class="fontClass">
OffTime:
10 Sec
</span>
</div>
Post a Comment for "Ionic Sub-footer Not Fixed At Bottom"