Trying to stop a link button from moving on hover
-
I am trying to change the behaviour of a freetobook widget. The search button jumps up on hover on my site. This is the first time freetobook have seen this behaviour and think it is something in the customizr theme. I was hoping I could stop the behaviour using this plug in. I have given this widget the class freetobook with your plug in. I have successfully managed to put a different background on the widget and added a red border to the container of the search button on hover. So the plug in is working well. The red border does not jump up but unfortunately the search button still does.
My css is
.freetobook {
background-color: #858585;
color:#FFF;
transform:none;
}
.searchButtonContainer:not(.nohover):hover {
border: 1px solid red;
}
When i examine the code for the page i can see this bit of code
<div class=”searchButtonContainer”>
<input value=”” class=”searchButton” type=”submit”>
</div>
I have not been able to apply the nohover CSS stuff to the class searchButton yet. Any ideas?The page I need help with: [log in to see the link]
- The topic ‘Trying to stop a link button from moving on hover’ is closed to new replies.