huangyuzhang / Fizzy-Theme

🥤A tasty blogging theme for Ghost.
https://fizzy.cc
MIT License
285 stars 68 forks source link

Right Align Header Tags #62

Closed drvaya closed 3 years ago

drvaya commented 3 years ago

I dont see an option to right align the headers.

Any pointers on how this can be done ?

Screenshot 2021-03-16 at 6 51 23 PM
denvergeeks commented 3 years ago

.navbar-menu { margin-right: -40px; }

or...

.navbar-menu { position: absolute; right: 0; }

or...

.navbar-menu { position: fixed; right: 0; }

Not quite sure what you mean, but if you want to push (just) the menu to the right, you can try these.

drvaya commented 3 years ago

Ofcourse this is always possible, I meant to ask if there is some control in the theme. Thanks for your answer !!