Dear Sirs I am trying to tag an image as old please see link as to what I am trying to achieve. https://www.wardlawfineart.co.uk/wp-content/uploads/2022/03/HWB-Sold.jpg Against the image developer settings I have set up a css class called .sold and used the following css but tried everything to get it to work see https://www.wardlawfineart.co.uk/wp-content/uploads/2022/03/HWB-Sold-2-scaled.jpg
.sold {background-image: url( “https://www.wardlawfineart.co.uk/wp-content/uploads/2022/03/Side_Sticker.png”)!important; position:relative;background-repeat: no-repeat; z-index:2;
}
.wp-image-1574{z-index:1}
Please can you help
Pete
Hi Pete,
Can you give us a link to the page shown in the screenshot? so we can inspect on it and try to give a more accurate CSS code.
Best regards,
Nikko
Sorry forgot !!!
Hi condonpb,
Thanks, please remove this CSS code:
.sold {
background-image: url(https://www.wardlawfineart.co.uk/wp-content/uploads/2022/03/Side_Sticker.png)!important;
position: relative;
background-repeat: no-repeat;
z-index: 2;
}
and replace it with:
.sold .avia-image-overlay-wrap:after {
content: '';
display: block;
position: absolute;
top: -11px;
left: -11px;
z-index: 10;
background-image: url(https://www.wardlawfineart.co.uk/wp-content/uploads/2022/03/Side_Sticker.png)!important;
width: 100px;
height: 98px;
}
Best regards,
Nikko