Download & Extend

How to remove 1st letter color in primary links?

Project:Interactive Media
Version:5.x-1.8
Component:Code
Category:support request
Priority:minor
Assigned:hswong3i
Status:closed (fixed)

Issue Summary

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

#1

Priority:normal» minor
Assigned to:Anonymous» hswong3i

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

Status:active» fixed

Assume as fixed since no more feedback.

#4

Status:fixed» closed (fixed)

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