How to Move category tag on post page here: http://prntscr.com/9ge8xc
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!
Working good but Not working only one port:
Check This: http://prntscr.com/9gt8ml
Not Working: https://mydreamlives.com/celebration-of-new-years-eve-in-miami-with-your-family.html
Working: https://mydreamlives.com/press-release-submission-sites-list.html
Also have problem on mobile: http://prntscr.com/9gvgbw
Category tag can’t show correct location. How to solve this?
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!
Not Working. check this:
http://prntscr.com/9h5gx5
http://prntscr.com/9h5hkg
http://prntscr.com/9h5id4
Please check what’s wrong.
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!