• Resolved Sunniie

    (@sunniie)


    Hi,

    hope I will get some help here.

    I already found out how to remove the box “comments closed”, but I like also to delete the author box. How can I do that? Is there a code, which I can also add to the css?

    I am also looking for something like the sidebar, but directly under the posts. I need a box or sth like that, where I can add the logos of my collaboration partners. This box should be shown in every post, but it should be possible to modify it. Is that possible in a lets say easy way?

    Thanks in advance! 🙂

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hey there Sunniie,

    Hope you’re well today!

    You can remove the box from single post pages by adding some custom CSS. Try adding the following CSS code in the style.css file of your child theme or add it in your site using the following plugin:

    http://ww.wp.xz.cn/plugins/simple-custom-css

    .single .content .post-meta-container {
    background: none;
    }
    
    .post-author {
    display: none;
    }
    
    .single .content .post-meta {
    float: left;
    }
    
    .single .content .post-meta-container:after {
    right: 60%;
    left: 0;
    }

    This should remove the box. As for the images you could use text widget to place images in your sidebar that will be displayed on all pages.

    Hope this helps 🙂

    Cheers,
    Bojan

    Thread Starter Sunniie

    (@sunniie)

    Hi Bojan,

    thank you!! My author box is gone! Yeah! 🙂

    Concerning the sidebar: My sidebar is fine and I added the images there. But the sidebar is not available on mobile phone. Therefore I like to add sth directly under the posts. With widgets it did not work, because I can only add sth at the sidebar or in the footer.

    Hope, you understand what I mean – I’m not very good in explaining things… 😉

    Cheers,
    Claudia

    Hey there Sunnile,

    Hope you’re well! 🙂 Working with Bojan here.

    First, I suggest you use a child theme http://codex.ww.wp.xz.cn/Child_Themes or use css custom plugin like this: https://ww.wp.xz.cn/plugins/simple-custom-css/ if you will customize your theme.

    Add the code you in your child theme’s style.css or using the plugin mentioned above.

    @media (max-width: 1000px) {
    	.sidebar {
    		display: block;
    		width: 100%;
    	}
    }

    If the code above don’t work, can you share you site so I can assist you better?

    Hope it helps! 🙂

    Best Regards,
    Calvin

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Author box Sidebar’ is closed to new replies.