I wish to remove this functionality from the theme completely but cannot find where the color is defined in css and cannot find any php code doing this.

How to remove 1st letter color in primary links?

Thanks!

Comments

hswong3i’s picture

Assigned: Unassigned » hswong3i
Priority: Normal » Minor

It is handle with:

#primary-links ul li a:first-letter {
  border-bottom: 1px dotted #4B5761;
  padding: 0 0 3px;
}

So you may unset them within your custom.css with:

#primary-links ul li a:first-letter {
  border-bottom: none;
  padding: 0;
}

P.S. Always try to unset the default layout within custom.css but not remove them from style.css. This will keep your upgrade path simpler.

hswong3i’s picture

Any else update? Or I will set this issue as fixed :-)

hswong3i’s picture

Status: Active » Fixed

Assume as fixed since no more feedback.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.