html - Target shows as hyperlink -
i tried create target, whatever reason, target bit "id" links displays text link not not link, if know mean (it's header; underlines , there's pointer arrow cursor change, not link anywhere because target). how make not happen? (page: http://www.thesimplewardrobeblog.com/post/114843804438/how-to-develop-your-personal-style)
thanks in advance, richie
my code follows
link:
<p class="subhead"><a href="#workbook" target="_self">skip workbook below</a></p>
target:
<h2><a id="workbook">your personal style workbook: 6 exercises discover personal style</a></h2>
put id
in <h2>
tag. not create <a>
tag that. so:
<h2 id="workbook">your personal style workbook: 6 exercises discover personal style</h2>
Comments
Post a Comment