css - Aligning NavBar Right cause NavBar to disable -
i'm trying right align navbar, whenever add float:right, navbar moves right, seems become disabled.
see here: goo.gl/46yurt
code:
/** * 4.2 navigation * ---------------------------------------------------------------------------- */ .main-navigation { clear: both; margin: 0; max-width: 100%; min-height: 45px; position: relative; float:right; }
i'm using custom modified version of twentythirteen theme.
ideally, i'd have menu beside logo @ top, both centered.
float:right seems positioning nav bar beneath element. adding z-index:1 fixes that, you'll still have adjust position of bar.
Comments
Post a Comment