Page 1 of 1

Easy way to right justify menu in a div tag?

PostPosted: Mon May 04, 2015 4:36 pm
by markwalther
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

Re: Easy way to right justify menu in a div tag?

PostPosted: Mon May 25, 2015 10:48 am
by Aivars
Simply add float: right to the menu wrapper element, e.g.

Code: Select all
#mbmcpebul_wrapper {
    float: right;
}

Re: Easy way to right justify menu in a div tag?

PostPosted: Wed Sep 02, 2015 3:11 pm
by KittyCathy
Thank you. You are the best.