Ask a Question related to Macromedia Contribute General Discussion, Design and Development.
-
areikiera #1
Make non-editable sections of webpage?
I'm designing a site using contribute. I'm wondering if I can take a webpage
that is already completed and make certain sections of it uneditable.... such
as the main links, or certain divs... Is there a way to do this? Or can this
only be accomplished with templates?
Thanks so much for all and any help!
areikiera Guest
-
Make non-editable region invisible
Is there a way to make the non-editable regions invisible to certain user groups, or all users? My template has a good amount of .net, javascript,... -
Webpage in Edit Mode displays NO editable data!
I used Dreamweaver MX to develop our company's Intranet. Our HR Director makes changes to the Job Postings page on her own using Contribute 2. ... -
Cannot make page editable
I'm a Contribute Administrator at my company and we currently have a few sites with pages that are locked and there doesn't seem to be anyway to... -
Using a webpage to make a text file
Hi Im pritty stuck I need to make a error report form which takes in info enetered in a form on a webpage from people which have access to that... -
Adding slice sections is distorting my webpage
I have a site with a rollover buttons on the top of the page and I want to add an image below the buttons now. Everything looks okay on the webpage... -
jheycie #2
Re: Make non-editable sections of webpage?
making certain sections of your page uneditable using contribute is not possible, however you can to it using dreamweaver.
jheycie Guest
-
ThinkInk #3
Re: Make non-editable sections of webpage?
This is possible to create by handcoding, but you have to create editable
regions and not non-editable regions.
Contribute understands the editable region code, also when it's not a
dreamweaver template (using dreamweaver templates of course has a lot of other
advantages).
The code you need looks like this: <!-- TemplateBeginEditable
name="content" -->content<!-- TemplateEndEditable -->
Place it like this in your page and the lorem ipsum p's are non editable, the
sentence 'This content is editable...' is editable. The head section and title
are also editable (convenient to adjust meta-tags through contribute):
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html
xmlns="http://www.w3.org/1999/xhtml">
<head>
<!-- TemplateBeginEditable name="doctitle" -->
<title>Untitled Document</title>
<!-- TemplateEndEditable -->
<!-- TemplateBeginEditable name="head" -->
<meta name="Keywords" content="keywords" />
<meta name="Description" content="description" />
<!-- TemplateEndEditable -->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<p>"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum."</p>
<!-- TemplateBeginEditable name="content" -->This content is
editable...<!-- TemplateEndEditable -->
<p>"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
proident, sunt in culpa qui officia deserunt mollit anim id est laborum."</p>
</body>
</html>
ThinkInk Guest



Reply With Quote

