Discussions
Categories
Groups
Community Home
Categories
INTERNAL ENABLEMENT
POPULAR
THRUST SERVICES & TOOLS
CLOUD EDITIONS
Quick Links
MY LINKS
HELPFUL TIPS
Back to website
Home
Web CMS (TeamSite)
problem on {Apply Style}
cc96ai
I try to apply style i Visual Editor
This is the view in HTML
<ul type="disc">
<li>Strategic Planning</li>
<li>Proposal Development</li>
<li>Professional Practices</li>
<li>Field Placement 3(300 hours, approx. 10 weeks)</li>
</ul>
after I apply style on WYSWYG
<ul type="disc">
<li>Strategic Planning</li>
<li>Proposal Development</li>
<li>Professional Practices</li>
<li class="Answer">Field Placement 3(300 hours, approx. 10 weeks)</li>
</ul>
the style only applied on in the last element of <li>
any idea on it ?
Thanks
--------------------------------------------
TS 6.1 W2K3
OpenDeploy 6.0
CC Pro/Std
Find more posts tagged with
Comments
Nicholas
If you want to apply style sheet as whole then you need to make "class=" with <ul> not <li>
Below is the sample
<ul class="Answer" type="disc">
Thanks Nicholas