Non-clickable link

-6

I'm creating a site and I'm having a problem, I have a tag link but I can not click on it. If I put it anywhere else the code works, but in that specifies no. (the link I'm quoting is this "Learn more")

<section class="ftco-section-2">
          <div class="container d-flex" id="franquia">
            <div class="section-2-blocks-wrapper row">
              <div class="img col-sm-12 col-lg-6" style="background-image: url('images/img/Bike4.png');">
              </div>
              <div class="text col-lg-6 ftco-animate">
                <div class="text-inner align-self-start">
                  <h3 class="heading">Seja nosso Franqueado.</h3>
                  <p>(Texto)</p>

                  <p>(Texto)</p>
                  <a href="?pg=franquia">Saiba mais.</a>
               </div>
              </div>
            </div>
           </div>
</section>
    
asked by anonymous 14.08.2018 / 20:07

1 answer

2

Your code does not appear to have a problem with the link .

<section class="ftco-section-2">
          <div class="container d-flex" id="franquia">
            <div class="section-2-blocks-wrapper row">
              <div class="img col-sm-12 col-lg-6" style="background-image: url('images/img/Bike4.png');">
              </div>
              <div class="text col-lg-6 ftco-animate">
                <div class="text-inner align-self-start">
                  <h3 class="heading">Seja nosso Franqueado.</h3>
                  <p>(Texto)</p>

                  <p>(Texto)</p>
                  <a href="?pg=franquia">Saiba mais.</a>
               </div>
              </div>
            </div>
           </div>
</section>

Have you checked that the redirect address is correct?

Here are some pages if you are having trouble handling them:

14.08.2018 / 20:38