View Single Post
Unread 08-11-2008, 11:47 AM
mpiaser mpiaser is offline
Junior Member
Join Date: Aug 2008
Posts: 9
  #4  
Default Figured it out

I have trace the problem to my attempt to change the text color of a selected menu item. In my code, when I am writing the menu item which I want to indicate as selected, I am adding <span style="color:d7671a;">

For example: <li><a href='my link info'>Name</style></a></li>";

becomes

<li><a href='my link info'><span style="color:d7671a;">Name</style></a></li>";

The problem was that I had </style> instead of </span>
Reply With Quote