Hi everyone,
I would love to ask you if you would know CSS code, that would resolve my issue.
Whatt CSS I would need to use so pop-up with age verification on my we with label “Ano” would be black background white text while the button "Ne would stay as is?
Any help appreciated.
All the best,
Petr
1 Like
Sorry, my website is www.cawino.cz
made4Uo
October 14, 2022, 11:00pm
3
Hi @PetrMachacek ,
If the pop up is not coming from app, you might be able to edit using the instructions below.
From your Admin Page, click Online Store > Themes >Actions > Edit code
In the Asset folder, open the theme.css
Paste the code below at the very bottom of the file.
.agp__buttonType__button.agp__button {
background: #000;
color: #fff;
padding: 10px;
}
Hello @PetrMachacek
To do that, in Shopify Admin, go to Themes, Edit code, open file theme.css (or theme.css.liquid) and add this code snippet at the bottom
.agp__buttonType__buttonContainer--pass .agp__button {
background: #000;
color: #fff;
padding: 8px 0;
}
The result
Hope that helps!