Re: Add a Class to a UL

  •  09-17-2008, 3:47 AM

    Re: Add a Class to a UL

    Hi Adam;

    This isn't what i was hoping for, I was hoping that when I highlighted the list and applied a CssClass then the class would be applied to the UL
     
    Here is the html result when I tried to apply a cssClass from the drop down menu onto the highlighted bullet list

    <ul>
         <li></li>
         <span class="SectionMenu">
         <li>dgddsad</li>
         <li>dsadasd</li>
         <li>dsadsad</li>
         <li>dasdad</li>
         </span>
    </ul>

    First off this added an extra LI and secondly the class was not applied to the UL
     
    What I was hoping for is 

    <ul class="SectionMenu">
         <li>dgddsad</li>
         <li>dsadasd</li>
         <li>dsadsad</li>
         <li>dasdad</li>
    </ul>

    This will allow my clients to have multiple pre-defined bullet lists in which they will just choose from the cssClass drop down menu. 
     
View Complete Thread