Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found
Not Found

All comments

  • Tok1o 350

    @ridhofaaauzi

    Submitted

    • 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?
    Sisart 70

    @sisart003

    Posted

    Try to remove the nav-show class

    2
  • Sisart 70

    @sisart003

    Posted

    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

    0
  • Sisart 70

    @sisart003

    Posted

    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.

    Marked as helpful

    1