Wandering we would like to add our own artwork as the background in Popup section. Anyone have any ideas if this is possible.
Our store is www.kiburi.com.au
Wandering we would like to add our own artwork as the background in Popup section. Anyone have any ideas if this is possible.
Our store is www.kiburi.com.au
Hello @kiburi-lifestyl
Go to online store ---------> themes --------------> actions ------> edit code-------> theme.CSS
and add this code at the very end of your file.
(you can change the background color according to your need)
@media screen and (min-width: 641px) {
.cookie-bar__inner {
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px 30px 20px 25px;
background: wheat;
}
}
and the result will be
If this was helpful, hit the like button and mark the job as completed.
Thanks
.cookie-bar__inner {
background-image: url(https://cdn.shopify.com/s/files/1/0539/6735/6095/files/kiburifooter.jpg?v=1718362488) !important;
background-repeat: no-repeat;
background-size: cover;
}
Where “url(” “)” is the path to your art image
Here is the result you will achieve:
Do you mean the cookie pop? If it is check this one.
.cookie-bar__inner {
background-image: url(https://cdn.shopify.com/s/files/1/0539/6735/6095/files/kiburifooter.jpg?v=1718362488) !important;
}
.cookie-bar__text.rte p {
color: white;
}
Please don’t forget to Like and Mark Solution to the post that helped you. Thanks!
Appologies for late reply. thanks heaps for the help
. How would we change the text to white on the left in banner. Not the Button in black and white. Just the text on the left. As if we change to Crimson, the text and the Privacy click through wont stand out.
Hi,
@media screen and (min-width: 641px) {
.cookie-bar__inner {
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px 30px 20px 25px;
background: crimson !important;
}
}
.cookie-bar__inner {
color: #fff !important;
}
Go to online store ---------> themes --------------> actions ------> edit code-------> theme.CSS -----> line no 10338
Search this code
.rte a:not(.button) {
color: var(--link-color);
transition: color 0.2s ease-in-out;
-webkit-text-decoration: var(--text-link-decoration);
text-decoration: var(--text-link-decoration);
text-underline-position: under;
}
and replace with this code
.rte a:not(.button) {
color: #000 !important;
transition: color 0.2s ease-in-out;
text-decoration: var(--text-link-decoration);
text-underline-position: under;
}
and the result will be
If this was helpful, hit the like button and mark the job as completed.
Thanks
Your font color and background color are same.
You have not changed the background color.
check again.
@media screen and (min-width: 641px) {
.cookie-bar__inner {
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px 30px 20px 25px;
background: crimson !important;
}
}
and check the result.
I now have this code all up in the bottom of theme.css. - Still background is white.
@media screen and (min-width: 641px) {
.cookie-bar__inner {
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px 30px 20px 25px;
background: crimson !important;
}
}
.cookie-bar__inner {
color: #fff !important;
}
Id say your step 2 to me looks incorrect. Am i correct in saying that mate.
Please check your inbox