html - making right aligned vertical tabs with foundation 4 framework? -
i'm absolutely flabbergasted , can't find solution remotely seems work!! i'm trying make vertical tabs on right , content on left. using foundation 4 framework. using vertical-nav in docs makes tabs, can't seem move them right. idea appriciated. i'm using code given in foundation docs: http://foundation.zurb.com/docs/components/section.html . see vertical nav.
a screenshot show i'm trying achieve:http://i47.tinypic.com/246nmnr.jpg
thanks lot help.
put content , nav in columns. see example below , see in action here. have resize "result" area in jsfiddle see effect of columns.
<div class="row"> <div class="small-12 large-9 columns"> <p >this content area</p> </div> <div class="small-12 large-3 columns"> <div class="section-container vertical-nav" data-section="vertical-nav" style=""> <section class="section"> <p class="title"><a href="#">privacy policy</a></p> </section> <section class="section"> <p class="title"><a href="#">license agreement</a></p> </section> <section class="section"> <p class="title"><a href="#">dmca</a></p> </section> <section class="section"> <p class="title"><a href="#">proprietary notices</a></p> </section> <section class="section"> <p class="title"><a href="#">trademarks</a></p> </section> </div> </div> </div>
Comments
Post a Comment