SEARCH

eCommerce WordPress theme with various e-store features and WooCommerce support.
GK User
Wed Mar 04, 2015 4:15 pm
Hi guys, I need your help.

I need to add the button to the search input box.

Can you help me?
User avatar
Expert Boarder

GK User
Wed Mar 04, 2015 11:31 pm
Hi,
Could you please provide me with a URL to your website, either here or via PM (click the “Private Message” text underneath my avatar) so that I may analyze it?

This code should helps
Code: Select all
.box #searchform #searchsubmit {
   display: block;
}

but need to see your site, to check it exactly.
User avatar
Moderator

GK User
Thu Mar 05, 2015 10:20 am
Thank you for your support Piotr.

I have added the code, but the button is not aligned. I tried with css but it's a little bit harder for me.

The website is located here: http://skinius.testwp.net/
User avatar
Expert Boarder

GK User
Fri Mar 06, 2015 8:42 am
The input is posisitoned absolutely, so you should do the same with the submit button, try this code:

Code: Select all
.box #searchform #searchsubmit {
   display: block;
   position: absolute;
   float: right;
   right: 30px;
   top: 99px;
}

#gk-search #s {
    right: 120px!important;
}
User avatar
Moderator


cron