@ridhofaaauziSubmitted 9 months ago
- I have difficulty overcoming the background turning dark when the menu appears.
- Also, how can I solve it so that the menu doesn't appear initially, and instead, it shows up when clicked?
Does anyone know how to resolve this overflow issue by any chance?
I'm not sure about the specifics of your problem, but I assume it's the horizontal scroll on body and I think it's:
body{
overflow-x: hidden;
}
correct me if I'm wrong, Thanks
Hi!
Nice Solution.
but the image is not showing.
need to put a dot(".") or remove the forward slash ("/") on the "src".
so instead of this:
<img src="/images/illustration-hero.svg" alt="a photo of a girl dancing to music">
should like this:
<img src="./images/illustration-hero.svg" alt="a photo of a girl dancing to music">
or this:
<img src="images/illustration-hero.svg" alt="a photo of a girl dancing to music">
both works pick one.