Home > Software engineering >  How to add link with CSS?
How to add link with CSS?

Time:04-27

The WebSite that I builded in Wordpress by Elementor allows me to add links to text with just 1 option. How do I add links to text with CSS?

CodePudding user response:

CSS is made for styling so links would need to be added via html. This can be done using the anchor tag. For example,

<a href="link that you want">Text you want</a>

CodePudding user response:

Elemntor is a CMS, so you will need to enable the HTML plugin to view/add custom code.

Here is a write-up on how to do it: https://passwordprotectwp.com/how-to-edit-html-in-elementor/

Once you add the plugin, you can add an assest tag, like below:

<a href="link">text</a>
  • Related