+ 2
Can anyone help me figure out why the left_side links are not working?
I was trying to practice fixed and fluid layout and every link i put in the #wrapper (left_side , right_side & content_area) becames unclickable. https://code.sololearn.com/WYF1765oxU16/?ref=app
2 Answers
+ 2
Hi. Your html tags might be overlapping and the left side section is below another element so it can't respond to the clicks.
In your css, go to #left-side and add the following property to it:
z-index: 10;
Hopefully that fixes it.
0
inxanedev! Thank you , it works perfectly!!