Site logo

Archived topic

Blog roll under podcast information

3 replies · Started by Jake on April 22, 2020

Viewing posts 1–4 of 4

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.

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

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

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

This archived topic is closed to new replies.