Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1490374

    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

    #1490375

    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

    #1490376

    HI Mike
    I changed that but it’s still the same – overlapping.
    Do you see that also?
    /Nancy

    • This reply was modified 2 hours, 12 minutes ago by Munford.
    #1490378

    Hi,
    Try clearing your browser cache and remove the bottom: 30px;:
    K8iU7lp.md.png

    Best regards,
    Mike

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.