Does anybody know how can I target a certain area from my page with a nav link.
There are options to link a navlink to custom url, internal page etc.
But I want to connect my FAQ navlink to FAQ area on my homepage… I dont have a separate page for FAQ.
Give the section containing the FAQ the CSS ID faq, and set the link to target #faq
2 Likes
I did that but now when I am on any other page that homepage, when pressing faq from nav menu it wont open it. It will open it only while on homepage ( I have a built template and its not excluded on any page). You might know why this happens ?
In that case, you’ll need to set the link to be homeurl.com/#faq instead of just #faq
If it’s just #faq it’s seen as a relative link, so it adds it to the page url you’re currently on. You need an absolute path if it’s pushing to an anchor on a different page