Advertisement

Any turning off the Featured bullet? Topic is solved

Everything to do with Joomla! 5.x templates and templating.

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.
Post Reply
User avatar
colin99
Joomla! Enthusiast
Joomla! Enthusiast
Posts: 238
Joined: Tue Nov 22, 2005 6:35 am
Location: Victoria - Canada
Contact:

Any turning off the Featured bullet?

Post by colin99 » Sun Oct 20, 2024 10:00 pm

The "Featured" bullet - banner tends to cover the featured article TOPIC title...

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!
Editor-Creator coffeecrew.com | dxer.ca | Coffeecrew.com and a whole bunch of neat websites - Joomla user since DAY 1!

Advertisement
User avatar
AMurray
Joomla! Master
Joomla! Master
Posts: 10337
Joined: Sat Feb 13, 2010 7:35 am
Location: Australia

Re: Any turning off the FEATURED bullet?

Post by AMurray » Sun Oct 20, 2024 10:20 pm

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.
Regards - A Murray
General Support Moderator

mtgg
Joomla! Intern
Joomla! Intern
Posts: 98
Joined: Thu Apr 04, 2024 11:17 pm

Re: Any turning off the FEATURED bullet?

Post by mtgg » Sun Oct 20, 2024 11:33 pm

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;
}

User avatar
colin99
Joomla! Enthusiast
Joomla! Enthusiast
Posts: 238
Joined: Tue Nov 22, 2005 6:35 am
Location: Victoria - Canada
Contact:

Re: Any turning off the FEATURED bullet?

Post by colin99 » Mon Oct 21, 2024 12:10 am

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?
Editor-Creator coffeecrew.com | dxer.ca | Coffeecrew.com and a whole bunch of neat websites - Joomla user since DAY 1!

User avatar
colin99
Joomla! Enthusiast
Joomla! Enthusiast
Posts: 238
Joined: Tue Nov 22, 2005 6:35 am
Location: Victoria - Canada
Contact:

Re: Any turning off the FEATURED bullet?

Post by colin99 » Mon Oct 21, 2024 1:05 am

AMurray wrote: Sun Oct 20, 2024 10:20 pm

Does that show up for normal viewers e.g. Guest, Public or Registered?

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!

mtgg
Joomla! Intern
Joomla! Intern
Posts: 98
Joined: Thu Apr 04, 2024 11:17 pm

Re: Any turning off the FEATURED bullet?

Post by mtgg » Mon Oct 21, 2024 2:00 am

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

User avatar
colin99
Joomla! Enthusiast
Joomla! Enthusiast
Posts: 238
Joined: Tue Nov 22, 2005 6:35 am
Location: Victoria - Canada
Contact:

Re: Any turning off the FEATURED bullet?

Post by colin99 » Mon Oct 21, 2024 2:43 am

mtgg wrote: Mon Oct 21, 2024 2:00 am As a general principle, I would not recommend creating a template override. Others may have a different approach.

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;
}
Yay!
Editor-Creator coffeecrew.com | dxer.ca | Coffeecrew.com and a whole bunch of neat websites - Joomla user since DAY 1!

smartymarty1234
Joomla! Apprentice
Joomla! Apprentice
Posts: 5
Joined: Mon Nov 11, 2024 3:49 pm

Re: Any turning off the FEATURED bullet?

Post by smartymarty1234 » Thu Nov 14, 2024 12:46 pm

Many thanks for posting this solution to what must be the most useless "feature" in history

Martyn

Advertisement

Post Reply

Return to “Templates for Joomla! 5.x”