Site logo

Archived topic

Elements - problem with the 's

1 reply · Started by Robert on December 22, 2021

Viewing posts 1–2 of 2

Hi

I added some code into an Element:
https://snipboard.io/b1z8qE.jpg

But even I used 2x <BR>
the two links are in one line

and I wanna have it one below the other

Kr
Rob.

Hi there,

you have the following CSS:

.author-box {
    padding: 3%;
    margin-top: 50px;
    font-size: 1em;
    background-color: #F1F1F1;
    display: flex;
    flex-wrap: wrap;
    color: #000000 !important;
}

the display: flex; property is whats making the elements inline. Remove that property if you want the elements to stack.

This archived topic is closed to new replies.