just add a new echo before: <?php echo “<h2>We start in:</h2>”; ?>
Thanks for the reply! But that adds the text on the line above. I wan’t it on the same line.
Do you have any other ideas why it doesn’t work?
Set Align to Left when you create your style.
I don’t know what I’m doing wrong. Here’s my style: #countdown{
position: relative;
//width: 200px;
//height: 81.6326530612px;
margin-left: 0;
padding-top: 0px;
text-align: left;
}
#countdown h1 {
color: #5e5e5e;
//display: inline-block;
font-family: ‘Maven Pro’, sans-serif;
font-size: 20px;
font-style: italic;
letter-spacing: 0px;
text-align: left;
}
And here’s where I insert the counter:
<div id=”countdown”>
<div class=”container”>
<span><h1>We start in: </h1><?php echo do_shortcode(‘[ujicountdown id=”main” expire=”2013/01/25 12:00″]’);?></span>
</div>
</div>
Thanks for your help!