How can I make hover text on wordpress as a free user
-
I am wishing to make it so when people hover their mouse over words that a small box will appear with text in it.
is there a way to do this using the basic free package for making a blog via wrodpress.com
Thanks
The blog I need help with is: (visible only to logged in users)
-
Hi there,
This is possible, but you will need to use HTML code to do it. Specifically, you use the
titleattribute for this.https://www.w3schools.com/tags/att_global_title.asp
For example, this code:
<p>This is an example of a <span title="A tooltip is text that appears when you hover over other text">tooltip</span></p>will produce this (hoping this works in the forums :) )
<p>This is an example of a <span title=”A tooltip is text that appears when you hover over other text”>tooltip</span></p>
To add custom HTML like this to a post you need to use the HTML block:
https://wordpress.com/support/wordpress-editor/blocks/custom-html-block/
-
Nope, it doesn’t work here in the forums :)
But when you add that in a post or page on your site it should.
- The topic ‘How can I make hover text on wordpress as a free user’ is closed to new replies.