on wordpress site i'm building want link refers section on same page.
code here:
<a href="#offer" target="_self">test</a>
the code on landing section here:
<a name="offer"></a>
somehow link ignored. maybe has wordpress setup? here site: http://bbwebdes.myhostpoint.ch/webauftritt/
i've tried relative , absolute links nothing working , have no clue why.
you need id if you're referencing internal link
<a id="offer"></a>
also might suggest using div or span instead of using link, since lead horrible outcomes.
<span id="offer"></span>
Comments
Post a Comment