Is there a way to write css based on WCM mode?
Hi,
Is there a way to write css based on WCM mode in .css file not in jsp file?
Thanks.
Vikram.
Hi,
Is there a way to write css based on WCM mode in .css file not in jsp file?
Thanks.
Vikram.
Hi, you could otherwise conditionally add a class name on your components or on the page and the do css selectors based on that.
<div class="myclassname <%= //add wcm check here. If wcmmode add wcm as another classname%>">
Content
</div>
and then in the css file target the myclassname class together with the wcmmode if you are in edit..
.myclassname.wcm{
background-color: red;
}
Hope that helps
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.