Do you have a “private message” option? I don’t want my site link to be public. Anyway, I had to add custom css (see below) to get the buttons to looks like my theme. Which worked for the “job-manager-form.” When I did the same for “job_listing_preview_title” I have a problem where the buttons don’t line up in one line, nor they stack on top of each other. I would have to go into plugin template and remove
for the to line up. I don’t see which theme they would ever work in correctly. Do you have a solution without going into HTML?
Thanks,
Kristina
.job-manager-form .button{
position: relative;
display: inline-block;
width: auto;
height: 44px;
line-height: 44px;
margin: 0;
padding: 0 36px;
border: 2px solid #4F90BA;
font-size: 14px;
font-weight: 700;
font-family: inherit;
text-align: left;
color: #fff;
background-color: #4F90BA;
text-decoration: none;
cursor: pointer;
outline: 0;
font-style: normal;
text-transform: uppercase;
text-shadow: none;
letter-spacing: 2px;
white-space: nowrap;
-webkit-transition: color .1s linear,background-color .1s linear,border-color .1s linear;
-moz-transition: color .1s linear,background-color .1s linear,border-color .1s linear;
-ms-transition: color .1s linear,background-color .1s linear,border-color .1s linear;
-o-transition: color .1s linear,background-color .1s linear,border-color .1s linear;
transition: color .1s linear,background-color .1s linear,border-color .1s linear;
-webkit-box-sizing: initial!important;
-moz-box-sizing: initial!important;
box-sizing: initial!important;
}
.job-manager-form .button:hover{
background-color: #fff;
color: #4F90BA;
}