Increase Space Between Search Bar And Cart Is Empty

Hi, on the homepage on the right top side how can i bring down the search bar and increase the space in between. It's too close to the “Cart is empty”. I provided my website link below. Thanks



Website: sareeforyou.com

probably find in design/themes/your theme/css/base.css


.search-block {
position: relative;
text-align: right;
}




and replace with




.search-block {
position: relative;
text-align: right;
padding-top: 10px
}

[quote name='johnbol1' timestamp='1418550957' post='199692']

probably find in design/themes/your theme/css/base.css


.search-block {
position: relative;
text-align: right;
}




and replace with




.search-block {
position: relative;
text-align: right;
padding-top: 10px
}


[/quote]





That didnt do anything. Looks the same.

The changes are correct, please try to clear the cache. Also we suggest you to use margin instead of padding here to avoid issue with loop icon:

Okay the code worked. I had to put the code in my custom css file. Thanks for the help guys!