Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

search bar and buttons not opening links #3

Open
satwikbhat1 opened this issue Aug 9, 2024 · 1 comment
Open

search bar and buttons not opening links #3

satwikbhat1 opened this issue Aug 9, 2024 · 1 comment

Comments

@satwikbhat1
Copy link

No description provided.

@patrikaeberli
Copy link

Do you mean buttons like the "Try for free" at the top right?
In that case you have to replace the href which is currently set to # which usually redirects to the top of the webpage.

Original:

<a href="#" class="btn has-before">
          <span class="span">Try for free</span>

          <ion-icon name="arrow-forward-outline" aria-hidden="true"></ion-icon>
        </a>

With changes:

<a href="https://patrikaeberli.ch" class="btn has-before">
          <span class="span">Try for free</span>

          <ion-icon name="arrow-forward-outline" aria-hidden="true"></ion-icon>
        </a>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants