Reply To: Pricing adjustments

Homepage Community Forums Epik Theme Support Pricing adjustments Reply To: Pricing adjustments

#11537
Wes
Moderator

    Are you asking how to make the bullets blue? If so, you would need to add this to your css –

    .plan-list li {
    	color: #008ae3;
    }
    
    .plan-list p {
    	color: #333;
            margin-bottom: 0;
    }

    Since adding blue to li will change both the bullet and the text inside of it at the same time, you’ll need to add <p></p> in between the <li> </li> in order for the above styles to affect them separately.

    To make the button blue, look around line 2775 in your css and change the background color –

    .epik-black .content .portfolio .more-link,
    .epik-black .plan-button a {
    	background: #008ae3;
    	color: #fff;
    }

    To remove the underline, look at the code right under the code above and add text-decoration: none;

    .epik-black .content .portfolio .more-link:hover,
    .epik-black .plan-button a:hover {
    	-moz-transition: all .5s ease;
    	-o-transition: all .5s ease;
    	-webkit-transition: all .5s ease;
    	opacity: .7;
    	transition: all .5s ease;
    	text-decoration: none;
    }