Forum Moderators: open
Sorry I don't think you can do this short of adding editable regions to your whole body. area - but that would defeat the purpose.
What is it you are trying to do?
If it is a body formatting issue CSS would enable you to do this. and you could place different styles within editable regions or adapt one external CSS.
Ta
Limbo
See css:
navcontainer ul {
border: 0;
margin: 0;
padding: 0;
list-style-type: none;
text-align: center;
}
#navcontainer ul li {
display: block;
float: left;
text-align: center;
padding: 0;
margin: 0;
}
#navcontainer ul li a {
background: #fff;
width: 78px;
height: 18px;
border-top: 1px solid #f5d7b4;
border-left: 1px solid #f5d7b4;
border-bottom: 1px solid #f5d7b4;
border-right: none;
padding: 0;
margin: 0 0 10px 0;
color: #f5d7b4;
text-decoration: none;
display: block;
text-align: center;
font: normal 10px/18px "Lucida Grande", "Lucida Sans Unicode", verdana, lucida, sans-serif;
}
You assign the Div containier the id and house your info within e.g.
<div id="navcontainer">
<ul......
....</ul>
</div>
then you can leave the body tag to hold site specific data that will replicate across your site via templates.
This is how I do it but you might want to qualify it with the CSS folks [webmasterworld.com] and the CSS validator :)
Select the id="whatever" in the body tag, then go to Modify Menu -> Templates -> Make Attribute editable.
In the dialog box, make sure id is the selected attribute, check the checkbox to make it editable, and fill in whatever other information is needed.
Then on your child pages, choose Modify -> Template properties, and you get a box that lets you enter some other value for the id attribute.