Tags next to comment counter

Posted in: Newsmag
Post count: 217

Hi,

how to put the tags next to the comments counter in the title-section?

I tried to move the code, but the tags were below the date. Not so pretty.

Thanks!

Post count: 6535

Hi

You need to edit the template file corresponding with the post template used for post and add this line of code like here: http://screencast.com/t/i00jJmVsWu

<?php echo $td_mod_single->get_the_tags();?>

The result should be like here: http://screencast.com/t/YxUhetAGTo
Please note that I haven’t tested this on other post templates, so I don’t know how it will behave on those cases.

Thanks!

Post count: 217

Thanks, works great!!! 😀

Post count: 217

Hi Andrei,

now I want to put a <h3> </h3> around the Tags. But if I do this, the tags are moving down. How can I achieve this?

Before:

With the <h3> it looks like this:

Thanks!

Post count: 217

Push.

Post count: 6535

Hi

Sorry for delay we somehow missed your post.
Assuming that you insert the h3 tags like here: http://screencast.com/t/VjWl3QZ1S1X you can try this custom css ion theme panel > custom css: http://screencast.com/t/D6qRnNHIJU

.td-tags h3 {
margin-top: 0px;
margin-bottom: 0px;
}
.td-tags {
display: inline-block;
}

Thanks!

Post count: 217

Thanks! 🙂

But i need to wrap the whole construct including the term “Tags” (or in my case “Deine Stars:”) in <h3>. And not every tag for itself.

I tried this:

<h3><?php echo $td_mod_single->get_the_tags();?></h3>

But than it looked like this:

Thanks!

Post count: 217

Push ^^

Post count: 6535

Hi

Try this custom css: http://screencast.com/t/1a24IGX0v

.td-post-header h3{
margin-top: 0px;
margin-bottom: -5px;
margin-left: 5px;
display: inline-block
}

Thanks!

Post count: 217

Thanks, it works! 🙂

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