[Support request] Blog roll under podcast information

Home Forums Support [Support request] Blog roll under podcast information

Home Forums Support Blog roll under podcast information

  • This topic has 3 replies, 3 voices, and was last updated 4 years ago by David.
Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #1249206
    Jake

    Hello!

    I’m trying to achieve something similar to what Tim Ferris has on his podcast page: https://tim.blog/podcast/ where he has a blog roll for all his podcast episodes at the bottom.

    Here’s my page: https://sendmetosleep.com/podcast/

    What’s the best way for me to achieve this? (I haven’t got any posts yet, however).

    Also, the search bar on the page looks strange on mobile, it turns into two rows. How can I fix it to be on one row?

    Thanks in advanced.

    #1249534
    Leo
    Staff
    Customer Support

    Hi there,

    You would need a plugin like WP Show Posts:
    https://en-ca.wordpress.org/plugins/wp-show-posts/

    The pro version is needed to use the infinite scroll option though:
    https://docs.wpshowposts.com/article/posts-overview/#pagination

    #1250472
    Jake

    Thanks for that Leo – I’ll use the plugin.

    Any idea on how to fix the search bar on the above page on mobile?

    #1250861
    David
    Staff
    Customer Support

    Hi there,

    problem with inlining the search and button – it gets very cramped on small devices. How about try this CSS:

    @media (max-width: 420px) {
        .wp-block-search .wp-block-search__input {
            max-width: unset;
        }
        .wp-block-search .wp-block-search__button {
            flex: 1;
            margin-left: 0;
            margin-top: 10px;
        }
    }

    It will stack the input and submit and make them both full width

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