Display the tags in list format

Hi,

Is there anyway to display the tags in a list format instead of dropdown as like as the attached screenshot?

Please help me on this.

3 Likes

Could you explain how you got this?

When I open forum.example.com/tags, tags are vertical aligned:

2 Likes

It is a sample mock-up, and it has to be implemented. The tags should be displayed as a horizontal list as per our requirements, and I am not sure how to display the tags horizontally instead of dropdown.

Do you have any idea about this?

Ok, you may want to play with browser console and CSS, for instance set width: max-content;

For my screenshot, this block was added to /admin/customize/themes/1/common/scss/edit:

.tags-list .tag-box {
	display: inline-block;
	width: max-content;
	margin-bottom: 1em;
	float: left;
	vertical-align: middle;
}

4 Likes