How to Move category tag

Posted in: Newspaper
Post count: 225

How to Move category tag on post page here: http://prntscr.com/9ge8xc

Post count: 23312

Hello Arafat,

If you want to move your category tag before author name, you have to alter loop template that correspond on what single template is used. Below you find the part of code that you should to move to achieve as you wish. Please follow the steps from the screenshot and fix the problem, like this: http://screencast.com/t/wXjfCMEBY

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

After these changes, it is neccesary to use a bit of Css to align the tags, like this:

.td-category {
float:left;
}

The result you should see here: http://screencast.com/t/0jorP4yvz7KN

Hope this helps and let us know how it goes!

Thank you for the message!

Post count: 225
Post count: 225

Also have problem on mobile: http://prntscr.com/9gvgbw
Category tag can’t show correct location. How to solve this?

Post count: 23312

Hello Arafat,

I’ve tested you both link of your sites and I saw the problem with your alignment of category tag. Please make you sure that you insert in the correct place the snippet of code in the same way as I showed you.

Please try to use the code below to fix the position category tag on the mobile version. Place the code in Theme panel->Custom Css area.

@media (max-width: 767px){
.td-category {
float:left;
}
}

The result you should see here: http://screencast.com/t/65qomaJpjFaV

Hope this helps and let us know how it goes!

Thank you for the message!

Post count: 225

Not Working. check this:

http://prntscr.com/9h5gx5
http://prntscr.com/9h5hkg
http://prntscr.com/9h5id4

Please check what’s wrong.

Post count: 23312

Hello Arafat,

I’ve checked your Custom Code and I think you forgot a curly bracket, like this: http://screencast.com/t/M7FcvWsFto

Please add this bracket and also use the !important tag and try it again.

The result you should see here: http://screencast.com/t/AKeKRFQWWRko

Hope this helps and let us know how it goes!

Thank you for the message!

Post count: 225

Thanks! It’s now working.

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