How to Hide the Big Fat Bar Above the Navigation Bar
- 1). Open the HTML file for the page you want to modify in a text editor, such as Notepad, TextPad or EditPad.
- 2). Go to the <style> tag within the HEAD tag.
- 3). Add "padding-top:0;" and "margin-top:0" within the style for the navigation bar and any sections directly above it, such as a banner. Follow the example below, but leave in any other styles within the section, such as background images:
#banner {
padding-top:0;
margin-top:0;
}
#navigation {
padding-top:0;
margin-top:0;
} - 4). Change the "padding-bottom" and "margin-bottom" values for any sections directly above the navigation bar to zero, such as:
#banner {
padding-bottom:0;
margin-bottom:0;
}
Source...