How to create a class or id for text link

Dear members, could you please tell how do I create a link class or id for the text link. Thank you.

If you are trying to link to a section on your page, you set the links URL to href="#[id-section-name]". You can find where to enter the URL in the Options pane (top/right, Gear Icon) of the link you have selected.

You then have to give that section you want to link to the [id-section-name].

Either select the section in the Live View stage or the Overview pane (bottom/left) or the HTML pane (bottom/middle/left).

Once selected, if the HTML pane isn't already open click on it to open it, then below the HTML pane is the Attribute pane. Enter in the [id-section-name] you used for the Link URL in the ID field. Then click APPLY at the bottom.

For example your HTML could look something like

<ul class="list-unstyled">
  <li><a href="#sports">Sports</a></li>
  <li><a href="#weather">Weather</a></li>
  <li><a href="#localpolitics">Local Politics</a></li>
  <li><a href="#funstuff">Fun Stuff!</a></li>
</ul>
<div id="sports">
  <p>It's football season again....</p>
</div>
<div id="weather">
  <p>It's getting colder outside....</p>
</div>
<div id="localpolitics">
  <p>Major Mr. Magoo is up for re-election....</p>
</div>
<div id="funstuff">
  <p>State Fair starts....</p>
</div>

Saj

I would highly suggest you go through the tutorials and learn more about using the app as you do ask some basic questions in here that are covered in those already. I think you will find them very helpful.