We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Chota CSS uses .tag in CSS to style tags component
.tag { display: inline-block; border: 1px solid var(--color-lightGrey); text-transform: uppercase; color: var(--color-grey); padding: 0.5rem; line-height: 1; letter-spacing: 0.5px; } .tag.is-small { padding: 0.4rem; font-size: 0.75em; } .tag.is-large { padding: 0.7rem; font-size: 1.125em; } .tag+.tag { margin-left: 1rem; }
WordPress generates tag class in body in Tag archives by default <body class="archive tag tag-tutorials tag-49 logged-in wp-embed-responsive" >
<body class="archive tag tag-tutorials tag-49 logged-in wp-embed-responsive" >
This means that the tag class gets applied to the entire tag archives and breaks my site.
Request to rename .tag to some other class so it can work plug and play in WordPress
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Chota CSS uses .tag in CSS to style tags component
WordPress generates tag class in body in Tag archives by default
<body class="archive tag tag-tutorials tag-49 logged-in wp-embed-responsive" >
This means that the tag class gets applied to the entire tag archives and breaks my site.
Request to rename .tag to some other class so it can work plug and play in WordPress
The text was updated successfully, but these errors were encountered: