How to Change the Height of a Navbar in a WordPress Thesis
Thesis is a theme framework for the WordPress content management system; it uses child themes for customizing templates and building websites. By default, a navbar (navigation menu) height is not declared for the element; instead, the height is set automatically by the default text size. Using a bit of CSS, however, you can set a custom height for the navigation menu bar.
Instructions
-
-
1
Sign in to your WordPress site and click on "Appearance," then on "Editor" to open the child theme's files.
-
2
Open the "Style.css" style sheet. If you are not using a child theme, and are simply using a blank version of the Thesis framework, open the "Custom.css" style sheet.
-
-
3
Type the following line of CSS at the bottom of the style sheet:
.menu { height: 50px !important; }
-
4
Replace "50px" with your desired navbar height. Click on "Update File" to save your changes.
-
1