Tagged: cornerstone
-
AuthorPosts
-
August 16, 2016 at 8:48 pm #1134580
hi,
i want to have text links be underlined and a different color than the surrounding text. for example, if in a blog post i use the cornerstone text editor to have the word “here” be hyperlinked to a different site, i want the “here” to be in blue and underlined always (not just when hovered).
i’ve gone through previous posts on this site to find the solution, but none are working for me. i tried the CSS text below, for example, and nothing.
please help.
.x-main a {
text-decoration: underline;
}August 16, 2016 at 11:26 pm #1134669Hello There,
Thanks for writing in! To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.
Thanks.
August 17, 2016 at 6:48 pm #1135916This reply has been marked as private.August 18, 2016 at 1:07 am #1136332Hi There,
Thanks, since you already provided your credentials. I did go ahead and declare this class below on your custom CSS.
.link-here { color: blue; text-decoration: underline; }
Now you just need to apply a class
link-here
to your link text.e.g.
<a href="#" class="link-here">here</a>
Hope it helps, Cheers!
August 19, 2016 at 3:27 pm #1138698thanks!
August 19, 2016 at 3:33 pm #1138709You are welcome!
Let us know if we can help with anything else.
Joao
-
AuthorPosts