Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Need Some Help With My Website

  • This topic is empty.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #293630
    ani1900
    Participant

    Hi Friends,

    Need some small help with my website.. How can I use incontent scrolls within a page from one portion to another using only html and css in wordpress.

    #293859
    jogodobicho
    Participant

    I also have the same doubt. I can even pay for the code.

    #293863
    Senff
    Participant

    What you want is page jumps. Basically, you create a point to jump to by using an ID to an element (that you want to jump to):
    <h2 id="my-jumpy-title">My Jumpy Title</h2>

    Then to jump to it, use this HTML code as a link:
    <a href="#my-jumpy-title">Go to the jumpy title</a>

    #293902
    ludykraks
    Participant

    You can also add the CSS property below for a smooth scroll behavior:

    html {scroll-behavior: smooth; }

Viewing 4 posts - 1 through 4 (of 4 total)
  • The forum ‘CSS’ is closed to new topics and replies.