Can anyone help me figure out why the left_side links are not working? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 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

28th Nov 2020, 9:09 PM
kbleul
kbleul - avatar
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.
29th Nov 2020, 2:18 AM
inxanedev!
inxanedev! - avatar
0
inxanedev! Thank you , it works perfectly!!
29th Nov 2020, 7:28 AM
kbleul
kbleul - avatar