Topic: Editing code from within the SimpleCMS system

As SimpleCMS is the only simple CMS in the world to enable 'click-to-define areas' (as opposed to editing the code manually) we have taken the decision to keep in with the 'simple' theme with regards to editing the code.

The edit code tab is a feature that requires switching on:

Account > My account > Check 'Edit HTML code'

The 'Code' tab will appear after clicking 'Save'. Editing code is a feature only available to Admins and not Users (just imagine the mess!)

If you prefer 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>

Whilst in 'Code' mode, you are able to navigate the site using the sitemap.

--
Short URL http://smplc.ms/editcode