Topic: Removing ID tags created by the system

SimpleCMS adds ID tags to your page where there are no ID tags - the system will never change any of your existing ID tags, it will only add tags where there should be tags.

This process is necessary to enable the 'click-to-define' capabilities of the system. If you are a more advanced user and you are happy to edit the HTML of your website then this feature can be turned off and no ID tags will be added to your HTML.

To do this, please go here:
Account > My account > Define edit areas manually

As mentioned, this will disable the click-to-define capabilities (and also remove the 'Define edit areas' tab) and will also remove any ID tags already placed on the page by the system. The 'Code' tab will appear and clicking this will enable you to add the required code to define your edit areas manually.

To define your edit areas manually, you should add

class="edit"

to the relevant HTML element, for example...

To make a DIV tag editable:

<div id="txt-content" class="edit">
    Some text about my dog
</div>

To make an IMG tag editable:

<img src="my-dog.png" id="img-dog" class="edit" />

To make an A tag editable:

<a href="dog.php" id="link-dog" class="edit">My dog</a>

This information can be viewed within the Code page by clicking the (?) symbol.

--

Short URL http://smplc.ms/removeidtags