Online Orders Popup

How to change

  • Button Text/Button URL
  • Button Spacing/Size
  • Button Color

Online orders popup 1

#1. Button Text/Button URL

First, click Online Orders Popup page in Not Linked

Online orders popup 2

Next, click EDIT

Online orders popup 3

Click on Text > then click EDIT

Online orders popup 4

Then you can change Button URL

Online orders popup 5

#2. Button Spacing

You can click Website > Pages

Online orders popup 6

Scroll down to Custom Code

Online orders popup 7

Next, click Custom CSS

Online orders popup 8

Scroll down to this position

Online orders popup 9

You will see this code

 grid-row-gap: 35px;
grid-column-gap: 35px;

Online orders popup 10

It is space between buttons

Online orders popup

and this code

grid-row-gap: 15px;

Online orders popup 12

It is space between buttons on mobile

Online orders popup 13

#3. Button Color

Scroll down a bit and you will see this code

color: #fff;
border: 2px solid transparent;

Online orders popup 14

It is Button Text Color + Button Border

Online orders popup 15

#3.1. First Button Color

You will see code like this

li:nth-child(1) a {
    background-color: #f1f !important;
    border-color: #fff !important;
}

Online orders popup 16

it is button background – border color of FIRST BUTTON

Online orders popup 17

#3.2. Second Button Color

You will see code like this

li:nth-child(2) a {
       background-color: green !important;
       border-color: #fff !important;
   }

Online orders popup 18

It is button background – border color of SECOND BUTTON

Online orders popup 17

#3.3. Third button color

You will see code like this

li:nth-child(3) a {
        background-color: #000 !important;
        border-color: #fff !important;
    }

Online orders popup 19

It is button background – border color of THIRD BUTTON

Online orders popup 17

#3.4. Fourth button color

You will see code like this

li:nth-child(4) a {
       background-color: brown !important;
       border-color: #fff !important;
   }

Online orders popup 20

It is button background – border color of FOURTH Button

Online orders popup 17

#4. Button Size

You can scroll to this

padding: 12px 10px;
       width: 180px;

Online orders popup 21

It will set button width – space between text – button border of 4 buttons

Online orders popup 22

#5. Rounded Corners

If you need to update rounded corners of buttons, change this line

border-radius: 5px;

Online orders popup 23

 

Buy me a coffee