Adding "Advertisement" at the top of a post

Posted in: Newspaper
Post count: 1

Hello, how can I add the word “Advertisement” (in small font) at the top of a post?

Ideally it would be above the headline, centered top of page or above the right-hand column.

To advertise a post on a few 3rd party networks I need this added…

thanks

Post count: 22421

Hi,

If you want to add a text inside a specific post, you need to edit the template file coresponding to the post style used on that post and add a condition to check if the post has a specific ID to echo a text on that post. Here is an example. My post has an id of 5042 so I would use this code like so:

<div class="customtext"> <?php if (is_single(5042)){
           echo "Advertisment";
        }?>
    </div>

http://screencast.com/t/jEWCIjOTgOsu
And then use this code to style the text with css:

.customtext{
display: table;
    margin-left: auto;
    margin-right: auto;
}

You can add the css in the thme panel->custom css box
result: http://screencast.com/t/vcJkbF50y2e

Thank you!

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