• Hi everyone. I’m trying to edit out something on my post page. What I want to get rid of, is the white bar underneath the post title that has the author, date and social links.

    You can see what I mean here-

    https://www.decoratethetable.com/outdoor-reception-table-ideas/

    Ideally, I’d like to move the social links to the prev post/next post bar above the post title, and just get rid of the rest so there is no white bar there.

    Any help much appreciated.

    Thanks

Viewing 3 replies - 1 through 3 (of 3 total)
  • You can play with some CSS to perhaps accomplish what you want. Something like the following although the absolute positioning may give you some issues.

    .social-media-icons {
        position: absolute;
        top: 10px;
        left: 359px;
    }
    .metabar {
        background: transparent !important;
    }
    .postmetas {
        display: none;
    }
    Thread Starter weirdali

    (@weirdali)

    Thank you. Do I just paste that code in at the bottom of my styles.css page?

    Alex

    That’s going to depend on your theme. If you are using a child theme then the answer is probably yes but some themes have their own area for styling or adding CSS. You will also probably have to tweak the CSS somewhat.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Please help WordPress Gurus :)’ is closed to new replies.