• Resolved Daniel Alonso

    (@daniel-alonso)


    Hi,

    I’m using your plugin sonce two years ago, and it’s great.
    But since your last update I lose then Widget title style. Before it was the same than my theme, but now it is different.

    You can check it here: https://bit.ly/2kAjwp7
    Look at teh sidebar, blocks 1, 3 and 4 are Recent Posts Widget With Thumbnails, and 2 is a theme widget.
    You can also check it in the footer, where 2nd block uses Recent Posts Widget With Thumbnails.

    How can I change it?
    Thanks,
    Daniel

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

    (@hinjiriyo)

    The reason for the lost of the titles style is a little but powerful change in the HTML code of the widget in the last upgrade. It was necessary to achieve more compliance with the WordPress standard widgets and thus equal results. At least nearly equal results.

    You can get back the titles style with the following CSS code. Put it in the file ‘style.css’ of the theme – the easiest but unsafe way. Because the inserted code will be away after the next theme upgrade. The safe way is to insert the code in a Custom CSS plugin:

    #footer.dark .recent-posts-widget-with-thumbnails .rpwwt-widget strong {
        color: #fff;
        border-color: rgba(255, 255, 255, 0.15);
    }
    .recent-posts-widget-with-thumbnails .rpwwt-widget strong {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
        text-transform: uppercase;
        padding-bottom: 13px;
        margin-bottom: 28px;
        border-bottom: 2px solid #080808;
    }
    • This reply was modified 7 years, 9 months ago by Martin Stehle. Reason: typo
Viewing 1 replies (of 1 total)
  • The topic ‘Widget title style’ is closed to new replies.