Greetings! I am currently working on implementing a menu bar on the left-hand side of my webpage.
However, I've encountered an issue where the menu bar is causing all the HTML content below it to be misaligned. Additionally, the menu bar appears visible but is not responsive to clicks.
Could someone please advise me on how to address this problem?
I have included some code snippets from both the HTML and Stylesheet files:
HTML
<!DOCTYPE html>
<html>
...
Here is the relevant CSS code added to the stylesheet:
.icon-bar {
...
}
.icon-bar a {
...
}
.icon-bar a:hover {
...
}
.active {
...
}
I would like to know how I can prevent the menu bar from affecting the alignment of the HTML text below it. Furthermore, what could be causing the menu bar to be unresponsive despite being visible?
Your assistance in resolving this matter is greatly appreciated!
FULL HTML
<!DOCTYPE html>
<html>
...