Change Orientation of Home Page Menu Bar
-
I am trying to change the orientation from the right to the left, or centered. I’m not seeing an option where I can change it and not sure which custom code I can put in. Thanks :)
The blog I need help with is: (visible only to logged in users)
-
The code below will allow you to change the orientation from right to left.
#menu li {
float: left;
}
-
Not sure where the line breaks came from.; allow me to try that again. :)
#menu li { float: left;} -
@johndcoy: The break tags came form your using code tags. Code tags are used to display computer code, not HTML or CSS. To display code here, you enclose it in backticks.
@empowerthemom: For a left aligned menu, paste johndcoy’s second suggestion in the CSS editor. For a centered menu, paste this:
#menu ul { text-align: center; } #menu li { display: inline-block; float: none; } -
- The topic ‘Change Orientation of Home Page Menu Bar’ is closed to new replies.