Hi,
Wondering if it is possible to add the Sign in / Login module in the same row as 'FIND BEST MATCH'? And keep it scaling correct on all devices of course ;)
See screenshot for what I have in mind.
@media screen and (min-width: 1100px){
.ow.base_sign_in .ow_sign_in_wrap {
top: 260px!important;
}
}
@media (max-width: 1099px) and (min-width: 980px){
.ow.base_sign_in .ow_sign_in_wrap {
top: 260px!important;
}
}
@media (max-width: 979px) and (min-width: 768px){
.ow.base_sign_in .ow_sign_in_wrap {
top: 260px!important;
}
}
put this code to your custom css area .
@media screen and (min-width: 1100px){
.ow.base_sign_in .ow_sign_in_wrap {
top: 260px!important;
left:50% !important;
}
}
Great to know that . Let us know if you need any other help .