Good morning.
Thanks for your answer. Based on this response, I have started working on the path you propose. But, despite the multiple additional CSS codes I have added to my WordPress (Astra theme), the text is still displayed underlined.
Here I show all the CSS styles that I have been trying one by one, without any success.
First attempt.
.wp-block-tiptip-hyperlink-group-block { text-decoration: none;}
Second attempt.
.wp-block-tiptip-hyperlink-group-block a {
? ? text-decoration: none;
}
Third attempt.
.wp-block-tiptip-hyperlink-group-block a {
? ? text-decoration: none !important;
}
.wp-block-tiptip-hyperlink-group-block a:hover {
text-decoration: none !important;
}
Fourth attempt.
.wp-block-tiptip-hyperlink-group-block > a:link {
text-decoration: none !important;
}
.wp-block-tiptip-hyperlink-group-block > a:visited {
text-decoration: none !important;
}
.wp-block-tiptip-hyperlink-group-block > a:hover {
text-decoration: none !important;
}
.wp-block-tiptip-hyperlink-group-block > a:active {
text-decoration: none !important;
}
-
This reply was modified 5 months, 1 week ago by Yui.
-
This reply was modified 5 months, 1 week ago by ugarte. Reason: More clarified layout