Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Martin Stehle

    (@hinjiriyo)

    The text indent of the link text is created by the theme in this statement:

    .widget ul {
        ...
        text-indent: -1em; <= this line
    }

    To remove the indent, delete the workaround

    #builder-module-4fb6f972b770e span.rpwwt-post-title {
        ...
        padding: 15px; <= this line
    }

    and use

    .rpwwt-widget ul li {
        text-indent: 0;
    }

    I’m not sure if I’m having the same problem as this because I can no longer see the screenshot. My problem is that once I fixed the line height on the heading text (so there wasn’t so much space between lines when the heading dropped onto two lines), then the top of the heading infuriatingly moved above the top of the image. How do I make the top of the heading align with the top of the image?

    Plugin Author Martin Stehle

    (@hinjiriyo)

    @theladycatelyn Move the image down by adding a top padding to it.

    Actually, the image has no padding and it is actually the title text that needs to move down. The reason it popped up above the image topline was because I applied your fix to reduce the title text line spacing. Can you offer any suggestions?

    Plugin Author Martin Stehle

    (@hinjiriyo)

    The plugin adds some margins around the image. To refine add this CSS code:

    .widget .rpwwt-widget ul li img {
        margin-top: 3px;
    }

    Play around with the value 3px, e.g 4px or 2px until it fits.

    • This reply was modified 4 years, 11 months ago by Martin Stehle.
    • This reply was modified 4 years, 11 months ago by Martin Stehle. Reason: new approach
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘How to align Title on widget?’ is closed to new replies.