Tagged: button element, button overlapping
hi
on the page below I am seeing some strange behaviour with my button elements.
the backend looks like this: https://imgur.com/a/wFboAp9
but the front end shows just one button like there is a negative whitespace or something. (see below)
I have tried redoing all the elements but all the buttons are acting the same.
I can’t find any css that is causing it. can you see what the issue is?
thanks
Nancy
Hey Munford,
Your buttons are on top of each other due to position: absolute; in this custom css:
.priser .avia-button-wrap {
display: inline-block;
position: absolute;
bottom: 30px;
left: 0;
right: 0;
}
Try this instead:
.priser .avia-button-wrap {
display: block;
position: relative;
}
Best regards,
Mike
HI Mike
I changed that but it’s still the same – overlapping.
Do you see that also?
/Nancy