You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The top section content (page header text) is hidden behind the fixed navbar. This makes the header partially invisible and creates a poor first impression.
Proposed Solution
Add top padding or margin to the main content area equal to the navbar height (e.g., padding-top: 70px;).
Alternatively, adjust the navbar’s positioning (e.g., sticky vs fixed) so it doesn’t overlap content.
Ensure consistent spacing across all pages.
Alternatives Considered
Keeping the current fixed navbar (but this causes overlap issues).
Using a transparent navbar (not ideal since it reduces readability).
Additional Context
Example fix:
body {
padding-top:70px; /* match navbar height */
}
@devayanm I want to work on thisissue under OSCI , please assign it to me.