Advertisement
Any turning off the Featured bullet? Topic is solved
Moderator: General Support Moderators
Forum rules
Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Forum Post Assistant - If you are serious about wanting help, you will use this tool to help you post.
Windows Defender SmartScreen Issues <-- please read this if using Windows 10.
Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Forum Post Assistant - If you are serious about wanting help, you will use this tool to help you post.
Windows Defender SmartScreen Issues <-- please read this if using Windows 10.
- colin99
- Joomla! Enthusiast
- Posts: 238
- Joined: Tue Nov 22, 2005 6:35 am
- Location: Victoria - Canada
- Contact:
Any turning off the Featured bullet?
The "Featured" bullet - banner tends to cover the featured article TOPIC title...
Is there any turning this off?
Is there any turning this off?
You do not have the required permissions to view the files attached to this post.
Last edited by toivo on Thu Nov 14, 2024 9:11 pm, edited 1 time in total.
Reason: mod note: changed all CAPS subject - please observe the forum rules!
Reason: mod note: changed all CAPS subject - please observe the forum rules!
Editor-Creator coffeecrew.com | dxer.ca | Coffeecrew.com and a whole bunch of neat websites - Joomla user since DAY 1!
Advertisement
- AMurray
- Joomla! Master
- Posts: 10346
- Joined: Sat Feb 13, 2010 7:35 am
- Location: Australia
Re: Any turning off the FEATURED bullet?
You want to turn off the "Featured" flag?
Perhaps it's an 'admin only view' so you know its a featured article (in the front end) for admin or content editor level users.
Does that show up for normal viewers e.g. Guest, Public or Registered?
I'm thinking this is similar to when you're logged in the front end as a content creator or admin level user you might see both published, and unpublished articles, whereas a normal users would only see published articles.
There's nothing in https://docs.joomla.org/Managing_the_Featured_Items to suggest featured articles are tagged with the "featured" like your illustration. I can't find any specific J5 docs on this, every search I doe leads to the above link but that's showing J3 screenshots not J5.
Perhaps it's an 'admin only view' so you know its a featured article (in the front end) for admin or content editor level users.
Does that show up for normal viewers e.g. Guest, Public or Registered?
I'm thinking this is similar to when you're logged in the front end as a content creator or admin level user you might see both published, and unpublished articles, whereas a normal users would only see published articles.
There's nothing in https://docs.joomla.org/Managing_the_Featured_Items to suggest featured articles are tagged with the "featured" like your illustration. I can't find any specific J5 docs on this, every search I doe leads to the above link but that's showing J3 screenshots not J5.
Regards - A Murray
General Support Moderator
General Support Moderator
-
- Joomla! Intern
- Posts: 98
- Joined: Thu Apr 04, 2024 11:17 pm
Re: Any turning off the FEATURED bullet?
The featured badge is covering the article title because of a CSS rule that you're using. Try this instead:
Code: Select all
.featured-article-badge {
position: unset !important;
}
- colin99
- Joomla! Enthusiast
- Posts: 238
- Joined: Tue Nov 22, 2005 6:35 am
- Location: Victoria - Canada
- Contact:
Re: Any turning off the FEATURED bullet?
That is perfect -- I am wading through hundreds of lines of CSS in my template...
Do I just drop this in somewhere -- as an override perhaps?
I cannot find featured-article-badge anywhere -- it has to be somewhere, yes?
Do I just drop this in somewhere -- as an override perhaps?
I cannot find featured-article-badge anywhere -- it has to be somewhere, yes?
Editor-Creator coffeecrew.com | dxer.ca | Coffeecrew.com and a whole bunch of neat websites - Joomla user since DAY 1!
- colin99
- Joomla! Enthusiast
- Posts: 238
- Joined: Tue Nov 22, 2005 6:35 am
- Location: Victoria - Canada
- Contact:
Re: Any turning off the FEATURED bullet?
It shows up for everyone.
I'm wading through page after page of CSS in many different places w/o a hint of article-feature-badge mention.
Editor-Creator coffeecrew.com | dxer.ca | Coffeecrew.com and a whole bunch of neat websites - Joomla user since DAY 1!
-
- Joomla! Intern
- Posts: 98
- Joined: Thu Apr 04, 2024 11:17 pm
Re: Any turning off the FEATURED bullet?
As a general principle, I would not recommend creating a template override. Others may have a different approach.
As a general principle, I don't wade through thousands of lines of CSS to try to discover where there's a CSS rule that does something I don't want. I certainly do not recommend editing any software (including CSS) supplied by a template developer. It is a better approach to create a "custom" CSS file that is called by the template; such "custom" CSS files are unlikely to be affected when there is an update/upgrade to either the template or to Joomla.
I don't know how Helix Ultimate templates work or how to create "custom" CSS files that those templates call. That is probably something you need to ask the Helix Ultimate template developers about.
When you figure out how to create a custom CSS file for your website(s) then you can create one and add any CSS rules you like. As far as standard Joomla is concerned (i.e. Cassiopeia), the technique is documented here: https://docs.joomla.org/J4.x:Cassiopeia ... Cassiopeia
As a general principle, I don't wade through thousands of lines of CSS to try to discover where there's a CSS rule that does something I don't want. I certainly do not recommend editing any software (including CSS) supplied by a template developer. It is a better approach to create a "custom" CSS file that is called by the template; such "custom" CSS files are unlikely to be affected when there is an update/upgrade to either the template or to Joomla.
I don't know how Helix Ultimate templates work or how to create "custom" CSS files that those templates call. That is probably something you need to ask the Helix Ultimate template developers about.
When you figure out how to create a custom CSS file for your website(s) then you can create one and add any CSS rules you like. As far as standard Joomla is concerned (i.e. Cassiopeia), the technique is documented here: https://docs.joomla.org/J4.x:Cassiopeia ... Cassiopeia
- colin99
- Joomla! Enthusiast
- Posts: 238
- Joined: Tue Nov 22, 2005 6:35 am
- Location: Victoria - Canada
- Contact:
Re: Any turning off the FEATURED bullet?
Solution -
Create a custom.css file inside the css directory and add this css code inside the custom.css file for the initial solution.
template > your_template> css > custom.css
Code: Select all
span.badge.bg-danger.featured-article-badge {
display: none;
}
Editor-Creator coffeecrew.com | dxer.ca | Coffeecrew.com and a whole bunch of neat websites - Joomla user since DAY 1!
-
- Joomla! Apprentice
- Posts: 7
- Joined: Mon Nov 11, 2024 3:49 pm
Re: Any turning off the FEATURED bullet?
Many thanks for posting this solution to what must be the most useless "feature" in history
Martyn
Martyn
Advertisement