all I want to do is change the alignment of the simple menu system from default on the left to centered on the browser. also, when the browser is deflated ( rubber banded back to a smaller size), the menu will not scroll to a smaller size. BTW, what is the term for when you make use the mouse to make the browser smaller?
I am sure there is a simple solutions... perhaps margins or something like that.
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | 9-19-2012 8-57-40 PM.png | 3.08 KB | JohnnyW |
Comments
Comment #1
mfer commentedSimplemenu lets you use a custom theme for the menu bar. That might be your simplest solution.
Comment #2
zroger commentedsee #219740
Comment #3
JohnnyW commentedI am considering using css on original.css line 2 in module:
simplemenu-block {
height: 21px;
/* I added below */
display: table;
margin: 0 auto;
}
For simple black setup, then use the simpleblack.css on line 2 I believe:
.simplemenu-block {
height: 28px;
_margin-bottom: -20px;
/* I added below */
display: table;
margin: 0 auto;
}
Comment #4
AlexisWilke commentedNonnie,
Thank you for sharing your solution.
Alexis
See also #219740: Centering Menu
Comment #5
JohnnyW commentedFor sure...
but also watch the width % to ensure it looks right ;)
Nonnie