Code for linking to authority

by 5 replies
6
Hi, how do I place this code "<a style="text-decoration: none; color: black;" href="http://www.url.com">Keyword</a>" in HTML without it being visible at Visual. I am using ProReview Theme. Thanks
#programming #authority #code #linking
  • display: hidden;
    • [1] reply
    • There are two possible ways to hide an element. It depends on what exactly you are trying to achieve.

      Number one (see Jonas“ answer)

      Code:
      <a style="text-decoration: none; color: black;display:none" href="http://www.url.com">Keyword</a>
      This will hide the link completely.

      Number tow

      Code:
      <a style="text-decoration: none; color: black;visibility:hidden" href="http://www.url.com">Keyword</a>
      This will hide the link, but it will still take up space in your layout.
      • [1] reply
  • If your using wordpress flatform there is a plugins called pretty link for further information just search the plugins and read the instruction on how to use it and soon...

Next Topics on Trending Feed

  • 6

    Hi, how do I place this code "<a style="text-decoration: none; color: black;" href="http://www.url.com">Keyword</a>" in HTML without it being visible at Visual. I am using ProReview Theme. Thanks