Hello.
I am having a heck of a time trying to get the editing tags to appear on a client's test page.
If I set up my code with:
<div class="cms-editable">, PL will complain with a red bubble saying it's not an ID. However, if I change it to an ID, nothing will show up.
With:
<div class="cms-editable" id="something">, this will work, but I then can't use the "something" style elsewhere on the page?
So, for something like this:
This is id=cms-editable class=email1: no edit tag
<div id="cms-editable" class="email1">this@place.ca</div>
This is class=cms-editable id=email2: edit tag
<div class="cms-editable" id="email2">that@place.ca</div>
This is class=cms-editable: red warning bubble
<div class="cms-editable">that@place.ca</div>
The CSS will have to be something like:
#email1, #email2 { <insert styles here>; }
Is this correct, or am I completely off on this? I mean, I did create a test page before for PL usage, but didn't have any problems with it at all. Tags were showing up perfectly.
My apologies if this sounds more like a rant, but I was hoping PL was going to work for my clients.
Pat