Hi
Where do I increase the height of the Top Menu Bar in Confluence. I need it about 50% larger. I looked at header.vm but could not discern where the change would be made. If this is a stylesheet change, what would the code look like?
Add this:
.aui-header { padding: 15px 0; }
Tried that too without change.
However, by using firebug, I found the name of the selector class and then changed it as below. This works - kind of.
This added andother 60px but below the top menu. So now, while I have the extra space, it is not centred but added to the bottom. See images attached. I was expecting the logo and search to be centred.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Try appending !important to the end of the line, like this:
height:120px !important;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can set the height of the menu bar in a custom CSS file by using the #menu selector:
#menu {
height:120px;
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I added that to the Global Styleshee and it had no effect. Then I added it to the custom html with the same result. Something I am doing wrong?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.