Search code examples
htmlgoogle-custom-search

Space between <div> and a script


I would like to insert a space between the <div> border and Google Custom Search box, like this (made with paint):

enter image description here

but by default it's like this:

enter image description here

How to?


Solution

  • That's done with CSS using padding-left. i.e.

    selector {
        padding-left: 20px;
    }