Help required to remove extra space between auto-nav and site-name block
Permalink 1 user found helpful
Need help to remove extra space that is there in the site between auto-nav block and site-name block. I am using Greek_Yogurt theme for my site. Have spend lot of time looking through greek_yogurt css and default css but no luck
site is www-test.kbftokyo.org [ just in case you want to see the large gap between two blocks]
Appreciate any quick help
site is www-test.kbftokyo.org [ just in case you want to see the large gap between two blocks]
Appreciate any quick help
Thank you very much. I had gone through the typography.css and fixed it by reducing margin-top at two places as given below.
div#main-container #header h1 {
font-size: 28px;
margin-left: 45px;
/* padding-bottom: 55px; */
padding-bottom: 5px;
margin-bottom: 0;
display: inline;
float: left;
}
/* header list styles */
div#main-container #header ul {
float: right;
list-style-type: none;
/* margin-top: 14px; */
margin-top: 4px;
margin-bottom: 0;
margin-right: 45px;
div#main-container #header h1 {
font-size: 28px;
margin-left: 45px;
/* padding-bottom: 55px; */
padding-bottom: 5px;
margin-bottom: 0;
display: inline;
float: left;
}
/* header list styles */
div#main-container #header ul {
float: right;
list-style-type: none;
/* margin-top: 14px; */
margin-top: 4px;
margin-bottom: 0;
margin-right: 45px;
BTW, IE 9 has a really nice debugging tool "F12 debugging tools" that can be used to identify the css codes that is affecting every html ...
It was in the theme's main.css file. Under the "#sidebar li ul" section. The line-height was set to 3.5, I changed it to 1.5 and it display alot closer now. Hopefully this helps you.