Header Link

List dots - Header Link

List dots

by wads24 » Mon Oct 23, 2023 7:58 pm

Screenshot_20231023_135627_Chrome.png
How would I remove the list dots?
Thanks in advance for a reply.
User avatar
wads24
Registered User
Posts: 685
Joined: Fri Jun 10, 2005 4:44 am
Name: James

Re: List dots

by wads24 » Mon Oct 23, 2023 10:50 pm

I figured it out...

Open ./ext/hifikabin/headerlink/styles/all/theme/headerlink.css

Find

Code: Select all

.headerlink-list-item {
	margin: 0 4px;
}
Replace with

Code: Select all

.headerlink-list-item {
	margin: 0 4px;
	list-style: none;
}
Thanks in advance for a reply.
User avatar
wads24
Registered User
Posts: 685
Joined: Fri Jun 10, 2005 4:44 am
Name: James

Re: List dots

by cabot » Tue Oct 24, 2023 8:14 am

Good point!

It's an oversight on my part and I'll be in touch with HIFIKabin to make a fix for the next version.

You can delete list-style: none; in this rule as the declaration becomes useless (~line 20):

Code: Select all

.headerlink,
.headerlink-wrap.responsive-0 .headerlink {
    display: flex;
	flex-wrap: wrap;
	gap: 4px 0;
	list-style: none;
}
User avatar
cabot
Jr. Style Validator
Posts: 1026
Joined: Sat Jan 07, 2012 4:16 pm