Author Box

Posted in: Newspaper
Post count: 249

Hi,

i would like to make the author box closer to the bottom on the article. Could you suggest some CSS for me?

See here: http://snowwatch.org.uk/weather/cooler-this-week

Post count: 388
.post .author-box-wrap {
  margin-top: 0px;
}
Post count: 249

Thank you! Any idea how to change the box colour of it?

Post count: 249

I’d also like to use ‘By [Name]’ please could someone help me?

Post count: 6600

Hi,

Use this css: http://screencast.com/t/R6R2evj7Ol

.td-post-content .author-box-wrap {
background-color: #B5E4FF;
}

You can enable the author, like this: http://screencast.com/t/maiFPulHI

Thanks

  • This reply was modified 11 years by Lucian.
Post count: 249

How can you disable Author box on individual posts?

Post count: 6600

Hi,

Unfortunately there is no option for that, you can hide it via css if you want, and use the post id for it, like this: http://screencast.com/t/DYAgbrkr

.postid-505 .author-box-wrap {
display: none;
}

Thanks

Post count: 249

That didn’t work… I even used the !important; tag.

Please help.

Post count: 6600

Hi,

It dose work, as you can see here: http://screencast.com/t/phzv5408 I have tested this on your site.
As I stated before you need to get your post ID and use it to only hide the author box on specific posts, like this: http://screencast.com/t/YH1mscsz

If you add this css into your custom css filed you will hide the author box on this post page: http://snowwatch.org.uk/weather/looking-ahead-winter-part-two

.postid-2375 .author-box-wrap {
display: none;
}

Thanks

Post count: 249

Perfect! I must have done something wrong.

Thanks for your help!

Viewing 10 posts - 1 through 10 (of 10 total)
The forum ‘Newspaper’ is closed to new topics and replies.