Reply To: How Do I create a set of links that are underlined

Homepage Community Forums Epik Theme Support How Do I create a set of links that are underlined Reply To: How Do I create a set of links that are underlined

#9836
bshellhorse
Customer

    the links are just going to in pages and posts. So is this essentially what I put in css, where I add some identifier after the a, like a.ex1?

    a.ex1 {
    	color: #000;
    	font-weight: 400;
    	text-decoration: underline;
    }
    
    a.ex1 img {
    	margin-bottom: -4px;
    	margin-bottom: -0.25rem;
    }
    
    a.ex1:hover {
    	color: #888;
    	text-decoration: underline;
    }
    

    And then use it like this in a page or post?

    <a class="ex1" href="http://mysite.com">This link has underline</a>