How to remove 1st letter color in primary links?
ldway - August 9, 2008 - 00:22
| Project: | Interactive Media |
| Version: | 5.x-1.8 |
| Component: | Code |
| Category: | support request |
| Priority: | minor |
| Assigned: | hswong3i |
| Status: | closed |
Jump to:
Description
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!

#1
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.
#2
Any else update? Or I will set this issue as fixed :-)
#3
Assume as fixed since no more feedback.
#4
Automatically closed -- issue fixed for two weeks with no activity.