Tablepress custom css for links
-
I am trying to use a css button in tablepress that has a link. It is working except the link text is using the theme styling for links. I want the text to be white.
I am using:
Visit in the table.
Plugin Option:
.tablepress-button {
-webkit-border-radius: 6;
-moz-border-radius: 6;
border-radius: 6px;
font-family: Arial;
color: #ffffff;
font-size: 15px;
font-weight: bold;
background: #3152ac;
padding: 4px 12px 4px 12px;
margin: 12px 6px 8px 6px;
text-decoration: none;
}.tablepress-button:hover {
text-decoration: none;
}.tablepress-button a:link {
color: #ffffff !important;
}.tablepress-button a:visited {
color: #ffffff !important;
}.tablepress-button a:hover {
color: #ffffff !important;
}.tablepress-button a:active {
color: #ffffff !important;
}
- The topic ‘Tablepress custom css for links’ is closed to new replies.