Anchor link to different page not working (jumping back to top on load)

Anchor link to different page not working (jumping back to top on load)

Hello there! Been a while since I last came here, and as always I bring you a fine conundrum today:

Pretty simple:

Buttons on index.html links to specific parts of a different page through anchor id's. Problem is that while it is loading the new page, it always goes to the top of it rather than the point where I want it to go.

For some reason every time I do a fresh reload of the page, it does go to the anchor on load but only for a  second before jumping back to the top of the page. Like something is forcing the default position of the page.

http://grupo-wm.com/

  1. <div class="col-md-3 images_1_of_4 text-center">
  2.                 <span class="bg2"><i class="fa fa-cog"></i></span>
  3.                 <h5><a href="#">TURIAGRO</a></h5>
  4.                 <p class="para">A Turiagro nasce da paixão do Empresário Angolano Rogério Martins Leonardo pelas questões agrícolas à cerca de 3 anos. É uma das empresas mais recentes do Grupo WM, mas também é das mais dinâmicas.</p>
  5.                     <div class="col_space2"></div>
  6.                     <a href="empresas.html#turiagro" class="fa-btn btn-1 btn-1e">+ INFO</a>
  7. </div>   
  8. (...)

http://grupo-wm.com/empresas.html

  1. <div class="main row">
  2.        <div class="col-md-6 content_left">
  3.              <img src="web/images/pic-turiagro.png" alt="" class="img-responsive"></div>
  4.              <div  class="col-md-6 content_right">
  5.                 <div id="turiagro"></div>
  6.                 <h2>TURIAGRO</h2>
  7.                 <p class="para">A Turiagro nasce da paixão do Empresário Angolano Rogério Martins Leonardo pelas questões agrícolas à cerca de 3 anos. É uma das empresas mais recentes do
  8. (...)
I've looked far and wide for a fix and I have found posts with the same problem, but all attempts at fixing it through different methods haven't done anything at all.

For now at least, I am not actively using jQuery to make this link between pages as you can see, but I'm guessing  that I can fix my problem with it. Or maybe it is just an html/css thing? Honestly I can't tell.

Thank you in advance!