[Support request] Title moving

Home Forums Support [Support request] Title moving

Home Forums Support Title moving

  • This topic has 1 reply, 2 voices, and was last updated 4 years ago by David.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1221932
    Matin

    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?

    #1222078
    David
    Staff
    Customer Support

    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.

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