Replies: 0
So far I’ve managed to center align the text and buttons with the following code:
.pt-cv-wrapper {
position: relative !important;
}
.pt-cv-readmore {
position: absolute;
top: 110%;
left: 55%;
transform: translate(-50%, -50%);
}
.pt-cv-title{
position: absolute;
top: 20%;
left: 67%;
transform: translate(-50%, -50%);
}
.pt-cv-content{
text-align:center;
position: absolute;
top: 40%;
left: 67%;
transform: translate(-50%, -50%);
}
.pt-cv-meta-fields{
position: absolute;
top: 70%;
left: 67%;
transform: translate(-50%, -50%);
}
But it’s not showing correctly on small screens.