Archived topic
How the link to be on bottom
3 replies · Started by Afreen on May 29, 2021
How to align the link "Orthodontist Treatment" on the picture to be on the bottom, post a website page link in private.
Hi Afreen,
It will require some custom CSS, since you already use Generateblocks, why not just add a background image to the grid > container, then add Headline block (P) to the container.
In this way, you can control where the text to be located without using CSS. ( Set bottom padding of the container to 0)
Let me know :)
I don't want to make a link below the picture, I just need to align from the middle of the link to be on the bottom?
Try this CSS:
.wp-block-cover p {
margin-bottom: 0;
}
.wp-block-cover {
display: flex;
align-items: flex-end;
}