Site logo

Archived topic

Title moving

1 reply · Started by Matin on April 1, 2020

Viewing posts 1–2 of 2

Hey guys,
got a question: How can I makge the Font size of the title bigger and how can I do the the font to the midlle of the picture(https://ibb.co/XWc2NdV). I tried to make it bigger through typographie, but on this title it didnt worked.
On Mobile I would like to center it, how can I do this?

Hi there,

you may want to check the settings in the Related Posts plugin.
If its not possible then use this CSS to resize the b:

.rpwe-block .rpwe-title {
    font-size: 24px !important;
}

And this for alignment:

.rpwe-block li {
    display: flex;
    align-items: center;
}
.rpwe-title, .rpwe-time {
    margin-left: 2ch;
}
@media (max-width: 769px) {
    .rpwe-block li {
        flex-direction: column;
        align-items: center;
    }
}

Unfortunately can't do much about the Title and Date being inline.

This archived topic is closed to new replies.