If you notice some CSS has caused a random issue with the sidebar Search Submit Button. It doesn’t reach the bottom of the frame.
https://dl.dropboxusercontent.com/u/1049926/search_button.png
I put this in the Quick CSS and it doesn’t work. The code below is active now. I’m probably missing something simple.
#top #searchsubmit {
height: 42px!important;
}
Hey!
Please add this on Quick CSS:
.avia_mobile #top #searchsubmit, .avia_mobile .ajax_load {
height: 42px;
}
Regards,
Ismael
Hmm. I tried that. Doesn’t work. I also added !important and that didn’t work either.
Best, Jas
Hi!
The code you are adding should work. Please try adding following code to Quick CSS
#top #searchsubmit, .ajax_load { height: 42px !important; }
Cheers!
Yigit
Hi Yigit,
That solved it. I need both to accomplish it:
.avia_mobile #top #searchsubmit, .avia_mobile .ajax_load {
height: 42px;
}
and
#top #searchsubmit, .ajax_load {
height: 42px !important;
}
Thank you! Case closed!