Hi,
i would like to make the author box closer to the bottom on the article. Could you suggest some CSS for me?
I’d also like to use ‘By [Name]’ please could someone help me?
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.
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
That didn’t work… I even used the !important; tag.
Please help.
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
Perfect! I must have done something wrong.
Thanks for your help!