Hi
I am trying to align my ‘Add To Quote List’ button on screens larger than 929px.
http://dev2.electrixinternational.com/product/flat-lid-trunking-length/
I want to align it so the right of the button is directly under the right of the drop down selection box.
I have it working perfectly on every screen size less that 929 but I can’t see to control it on 929+.
It is saying that varitions_button is overriding div.variations_button.
Hi richardelectrix!
Please change following code
@media only screen and (min-width: 990px){
.variations_button {
right: 0 !important;
left: auto !important;
position: absolute;
width: 322px !important;
bottom: 10px;
}}
to following one
@media only screen and (min-width: 990px){
.variations_button {
right: 0 !important;
left: auto !important;
position: absolute;
width: 295px !important;
bottom: 10px;
}}
Cheers!
Yigit
Brilliant thanks