I need to place a button to go to a link within the page in an article
I put this code in the override css
- Code: Select all
.btnpos {
background: #F9A260;
background-image: -webkit-linear-gradient(top, #F9A260, #E86808);
background-image: -moz-linear-gradient(top, #F9A260, #E86808);
background-image: -ms-linear-gradient(top, #F9A260, #E86808);
background-image: -o-linear-gradient(top, #F9A260, #E86808);
background-image: linear-gradient(to bottom, #F9A260, #E86808);
-webkit-border-radius: 18;
-moz-border-radius: 18;
border-radius: 18px;
font-family: Arial;
color: #ffffff;
font-size: 20px;
padding: 15px 20px 15px 20px;
text-decoration: none;
}
.btnpos:hover {
background: #3cb0fd;
background-image: -webkit-linear-gradient(top, #3cb0fd, #3498db);
background-image: -moz-linear-gradient(top, #3cb0fd, #3498db);
background-image: -ms-linear-gradient(top, #3cb0fd, #3498db);
background-image: -o-linear-gradient(top, #3cb0fd, #3498db);
background-image: linear-gradient(to bottom, #3cb0fd, #3498db);
text-decoration: none;
}
and the code inside the article is as follows
- Code: Select all
<span class="btnpos"><a class="readon art-button" href="http://cityglobal.cl/contacto-02.html" rel="nofollow" title="POSTULA AQUÍ">POSTULA AQUÍ</a> </span></p>
but does not work
http://cityglobal.cl/servicios.html
I hope you can help me, thank you very much