diff --git a/src/calenstyle.css b/src/calenstyle.css index df9c808..fa771d5 100644 --- a/src/calenstyle.css +++ b/src/calenstyle.css @@ -410,9 +410,6 @@ .cContHeaderSections { - height: 45px; - line-height: 45px; - text-align: center; vertical-align: top; } @@ -564,6 +561,7 @@ .cContHeaderMenuSections { display: inline-block; + padding-bottom:10px; } .cContHeaderMenuSections li diff --git a/src/calenstyle.js b/src/calenstyle.js index 03a4fc8..338d7f8 100644 --- a/src/calenstyle.js +++ b/src/calenstyle.js @@ -2469,9 +2469,9 @@ CalenStyle.prototype = { iCalendarContHeight = $occCalendarContInner.outerHeight(); if(iCalendarContWidth > 410 || iCalendarContHeight > 410) - $(to.elem).find(".cContHeader, .cContHeaderSections, .cContHeaderDatePickerIcon, .cContHeaderFullscreen, .cContHeaderNavButton").css({"height": 45, "line-height": 45+"px"}); + $(to.elem).find(".cContHeader, .cContHeaderDatePickerIcon, .cContHeaderFullscreen, .cContHeaderNavButton").css({"height": 45, "line-height": 45+"px"}); else - $(to.elem).find(".cContHeader, .cContHeaderSections, .cContHeaderDatePickerIcon, .cContHeaderFullscreen, .cContHeaderNavButton").css({"height": 45, "line-height": 45+"px"}); + $(to.elem).find(".cContHeader, .cContHeaderDatePickerIcon, .cContHeaderFullscreen, .cContHeaderNavButton").css({"height": 45, "line-height": 45+"px"}); }, //--------------------------------- Header Related Functions End ---------------------------------