Welcome to the { mindfrost82.com } forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

Go Back   { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Software > Adobe Software > Dreamweaver

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 07-29-2008, 11:57 AM
Creative Kitten1
 
Posts: n/a
Meta description

In order to avoid duplicate Meta descriptions, on multiple pages created from a
template (Meta description inserted on template code) what can I do. DW doesn't
let me edit individual page Meta description as they are created from a
template. Any advise please...

Reply With Quote
  #2 (permalink)  
Old 07-29-2008, 12:10 PM
Malcolm _
 
Posts: n/a
Re: Meta description

On Tue, 29 Jul 2008 10:57:37 +0000 (UTC), "Creative Kitten1"
<webforumsuser@macromedia.com> wrote:

>In order to avoid duplicate Meta descriptions, on multiple pages created from a
>template (Meta description inserted on template code) what can I do. DW doesn't
>let me edit individual page Meta description as they are created from a
>template. Any advise please...



<!-- TemplateBeginEditable name="head" -->
<meta name="description" content="sample" />
<!-- TemplateEndEditable -->
</head>


Put the meta description inside the editable region in the <head>
--

~Malcolm~*...
~*
Reply With Quote
  #3 (permalink)  
Old 07-29-2008, 01:30 PM
Creative Kitten1
 
Posts: n/a
Re: Meta description

Thanks a lot Malcolm. Silly me, why didn't I think that..
Reply With Quote
  #4 (permalink)  
Old 07-29-2008, 02:15 PM
Malcolm _
 
Posts: n/a
Re: Meta description

On Tue, 29 Jul 2008 12:30:14 +0000 (UTC), "Creative Kitten1"
<webforumsuser@macromedia.com> wrote:

>Thanks a lot Malcolm. Silly me, why didn't I think that..



no problem - I don't know why Dw doesn't set up templates like that
from scratch ??

But you can edit the inbuilt "template" files within Dw to do this:

Look in Program Files
Adobe
Adobe Dreamweaver CS3
Configuration
Document types
New documents

look for Default.dwt

open it with Dw.


I have changed mine to the code below.

but normal warning - make a backup of the file first in case you make
mistakes.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=">
<!-- TemplateBeginEditable name="doctitle" -->
<title>Untitled Document</title>
<!-- TemplateEndEditable -->
<!-- TemplateBeginEditable name="head" -->
<meta name="description" content="">
<!-- TemplateEndEditable -->
</head>
<body>
</body>
</html>

--

~Malcolm~*...
~*
Reply With Quote
  #5 (permalink)  
Old 07-29-2008, 02:51 PM
Murray *ACE*
 
Posts: n/a
Re: Meta description

> no problem - I don't know why Dw doesn't set up templates like that
> from scratch ??


How would you have this happen?

--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
==================


"Malcolm _" <malcom@mon.org> wrote in message
news:nr4u849rk92nub400poqtnmd3kb42gl4r3@4ax.com...
> On Tue, 29 Jul 2008 12:30:14 +0000 (UTC), "Creative Kitten1"
> <webforumsuser@macromedia.com> wrote:
>
>>Thanks a lot Malcolm. Silly me, why didn't I think that..

>
>
> no problem - I don't know why Dw doesn't set up templates like that
> from scratch ??
>
> But you can edit the inbuilt "template" files within Dw to do this:
>
> Look in Program Files
> Adobe
> Adobe Dreamweaver CS3
> Configuration
> Document types
> New documents
>
> look for Default.dwt
>
> open it with Dw.
>
>
> I have changed mine to the code below.
>
> but normal warning - make a backup of the file first in case you make
> mistakes.
>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
> "http://www.w3.org/TR/html4/loose.dtd">
> <html>
> <head>
> <meta http-equiv="Content-Type" content="text/html; charset=">
> <!-- TemplateBeginEditable name="doctitle" -->
> <title>Untitled Document</title>
> <!-- TemplateEndEditable -->
> <!-- TemplateBeginEditable name="head" -->
> <meta name="description" content="">
> <!-- TemplateEndEditable -->
> </head>
> <body>
> </body>
> </html>
>
> --
>
> ~Malcolm~*...
> ~*


Reply With Quote
  #6 (permalink)  
Old 07-29-2008, 02:51 PM
Murray *ACE*
 
Posts: n/a
Re: Meta description

OIC....

--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
==================


"Malcolm _" <malcom@mon.org> wrote in message
news:nr4u849rk92nub400poqtnmd3kb42gl4r3@4ax.com...
> On Tue, 29 Jul 2008 12:30:14 +0000 (UTC), "Creative Kitten1"
> <webforumsuser@macromedia.com> wrote:
>
>>Thanks a lot Malcolm. Silly me, why didn't I think that..

>
>
> no problem - I don't know why Dw doesn't set up templates like that
> from scratch ??
>
> But you can edit the inbuilt "template" files within Dw to do this:
>
> Look in Program Files
> Adobe
> Adobe Dreamweaver CS3
> Configuration
> Document types
> New documents
>
> look for Default.dwt
>
> open it with Dw.
>
>
> I have changed mine to the code below.
>
> but normal warning - make a backup of the file first in case you make
> mistakes.
>
> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
> "http://www.w3.org/TR/html4/loose.dtd">
> <html>
> <head>
> <meta http-equiv="Content-Type" content="text/html; charset=">
> <!-- TemplateBeginEditable name="doctitle" -->
> <title>Untitled Document</title>
> <!-- TemplateEndEditable -->
> <!-- TemplateBeginEditable name="head" -->
> <meta name="description" content="">
> <!-- TemplateEndEditable -->
> </head>
> <body>
> </body>
> </html>
>
> --
>
> ~Malcolm~*...
> ~*


Reply With Quote
  #7 (permalink)  
Old 07-29-2008, 02:54 PM
A.Translator
 
Posts: n/a
Re: Meta description

> OIC....

What does this mean?

--
Regards,
Adriana.
[ put out the rubbish if you need to reach me by e-mail ]
www.spinsister.nl


Reply With Quote
  #8 (permalink)  
Old 07-29-2008, 02:54 PM
Murray *ACE*
 
Posts: n/a
Re: Meta description

Oh, I see....

--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
==================


"A.Translator" <TranslatoriaDELETE@THISgmail.com> wrote in message
news:mn.ebba7d87da4b1405.33167@THISgmail.com...
>> OIC....

>
> What does this mean?
>
> --
> Regards,
> Adriana.
> [ put out the rubbish if you need to reach me by e-mail ]
> www.spinsister.nl
>
>


Reply With Quote
  #9 (permalink)  
Old 07-29-2008, 02:55 PM
A.Translator
 
Posts: n/a
Re: Meta description

OIC...

--
Regards,
Adriana.
[ put out the rubbish if you need to reach me by e-mail ]
www.spinsister.nl


Reply With Quote
  #10 (permalink)  
Old 07-29-2008, 03:07 PM
Murray *ACE*
 
Posts: n/a
Re: Meta description

8)

--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
==================


"A.Translator" <TranslatoriaDELETE@THISgmail.com> wrote in message
news:mn.ebbb7d8773c59d1a.33167@THISgmail.com...
> OIC...
>
> --
> Regards,
> Adriana.
> [ put out the rubbish if you need to reach me by e-mail ]
> www.spinsister.nl
>
>


Reply With Quote
Reply

  { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Software > Adobe Software > Dreamweaver


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are Off
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 06:53 AM.


Powered by vBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.
© 1999-2008 mindfrost82.com v11.0


Sponsors:
Loans | Credit Cards | Proxy | Mobile Phone | Actress



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114