Hi,
I was wondering if there is an easy way to right justify the entire menu in a div tag. I have a div tag that is 960 pixels in length, and I want the menu to be right justified.
Sorry if this is a simple CSS question, but I've tried a few things and can't seem to get it right.
Love this program, keep up the great work......hopefully soon, you'll have mobile friendly menus....you know, like the hamburger menu......that appears when you re size the browser....or on a phone or tablet.
Thanks,
Mark
Easy way to right justify menu in a div tag?
-
- Posts: 2
- Joined: Sat Feb 01, 2014 11:30 pm
Re: Easy way to right justify menu in a div tag?
Simply add float: right to the menu wrapper element, e.g.
Code: Select all
#mbmcpebul_wrapper {
float: right;
}
Blumentals Software Programmer
-
- Posts: 3
- Joined: Wed Sep 02, 2015 2:05 pm
Re: Easy way to right justify menu in a div tag?
Thank you. You are the best.