Dears,
i am using ‘source’, ‘via’ and ‘tags’ on individual post page. However tags are thrid on the list, below ‘via’ and below ‘source’ items.
1. I’d like to have tags above them. How can this be achieved?
2. Is it possible to have tags respresented visually in a different way (e.g. other color, bigger font size) compared with via/source elements?
3. Would it be possible to have tags list on the top of the post rather than on the bottom (e.g. right below author/date line and above sharing buttons)?
It is fine if some CSS or child theme manipulation is required, please kindly guide on how to achieve those.
Thanks,
Michal
Hi,
1)By default, please notice that’s the order of them. So, if you need to make some changes over this section, you need to edit the loop single according to your post template used by you and make the following modification. As an example, if you are using the post template style 8, you need to edit the loop-single-8.php like this -> https://www.screencast.com/t/lQqVWBYvDv and the result is here -> https://www.screencast.com/t/P1KbqoAbwO
2)Yes, it’s possible if you will use such a custom CSS code for that. If you want to tune that section, you need to create your own custom CSS code, after using the Inspector Browser, according to our useful guide from here -> https://forum.tagdiv.com/create-custom-code-using-the-browsers-inspector/ As a hint, you can try using the code below and place it in Theme panel -> Custom CSS area.
.td-tags a {
color:red;
background:blue;
}
The result is here -> https://www.screencast.com/t/jQNDceBb9
3)If you want to move that section at the top of the page, you should edit the above core file and move the code which I have pointed you above. All of these custom modification can be added to a child theme if you do not want to be overwritten for a next theme update. For more information about how you can use Child Theme please check our useful guide form here -> https://forum.tagdiv.com/the-child-theme-support-tutorial/
Hope this helps!
Thanks for your understanding!