Hello my payment icons seem to be hidden behind the about us image in the about page.
How can I make them show?
Hello my payment icons seem to be hidden behind the about us image in the about page.
How can I make them show?
.about-us .about-bg {
position: absolute;
top: -50px;
right: -81% !Important;
display: block;
background: #f2eadb;
border-radius: 100%;
width: 120%;
height: 155%;
z-index: 0;
}
@nalnowaeam
Add this code in the bottom of custom.scss file.
That is not the solution I want I want the icons to be visible like the custom footer icons are showing without changing the position of the about-us images
.payment-icons li {
position: absolute !important;
z-index: 99999 !important;
}
Add this code in the bottom of theme.scss file.
Try out both code what i have given.
If you are not able to do it youself,
Then required a developer,
.payment-icons {
position: relative !important;
}
Add this code in custom.scss.css file
try out this code it will surely work for you.
Thank you.
ul.inline-list.payment-icons {
position: relative;
}
Add this css at the bottom of Online Store->Theme->Edit code->Assets->theme.scss.liquid
Thank you that worked!