Position Of TAGS In Article - Question | JoomShaper
🎃 Halloween Sale is Live! Get 35% OFF on all plans. Sale ends soon! Get Offer

Position Of TAGS In Article

PR

Peter De Reyghere

General 3 years ago

Hi I'm using Helix Ultimate as template in Joomla 4.0.4.

I would like to show the tags of an article at the top of the article. In Joomla I can choose to show or to hide, but not the position. There is also no option in the template editor to choose a position I guess i have to edit templates/shaper_helixultimate/html/com_content/article/default.php but that file is empty...

Is there a solution?

0
2 Answers
Rashida Rahman
Rashida Rahman
Accepted Answer
Support Agent 3 years ago #45724

Hi there!

Thanks for your query.

You can try the following code in your custom CSS:

body.view-article .article-details {
    display: flex;
    flex-direction: column;
}
body.view-article .article-details .tags {
    order: -1;
}

Note: Path towards custom CSS: Extensions>Templates>Styles> Click on your current default template name then choose Template Options. Then find custom CSS within the custom code.

Best Regards

0
PR
Peter De Reyghere
Accepted Answer
3 years ago #45871

Thank You for the response. However, if I add the code, the tags appear above the blog option feature image. I would like to have it below the title, or date

0