|
|
||||||
|
||||||
| Index Link To US Private Messages Archive FAQ RSS | ||||||
| Graphics & Design Discussion Forum Post your graphics design questions/comments/ideas in here. Ask questions, post tutorials, discuss trends and best practices. Sub-forum for website accessibility and usability. |
Share Thread: & Tags
|
||||
|
![]() |
|
|
LinkBack | Thread Tools | Display Modes |
|
|||
|
Hi Everybody.
I need some help. I have a site at www.ruralserv.com I designed it using dreamweaver and have a template for it. However, when I designed it I didn't realise the importance of SEO. I want to make it so that I can put individual meta tags on each page but when I put them in the template, they are all the same and greyed out when I check the source of the pages. So basically, what I'd like to do is put some kind of editable tag in the template which is in the head and not in the visible part of the page. Does anyone know how I can do this? Thanks |
|
|||
|
Arvana,
You've made my day. Thank you for that, a great help |
|
||||
|
Don't use DW templates.
Use Server Side Includes instead. They are so much easier to maintain in the long run.
__________________
Dave Barnes +1.303.744.9024 http://www.marketingtactics.com sitting in my basement with my iMac |
|
|||
|
Hi Dave,
Yes, I'm inclined to agree with you. I'm just getting the hang of them. Don't pressure me!! Only kidding ;-)) Thanks for the tip. |
|
||||
|
Dave, I would say that SSI's are great for those parts of the page that are consistent throughout the site, but Randell was asking about putting unique metadata into each page, which an SSI wouldn't really help with, unless you know a technique that I don't ;-)
Personally I've gone away from building static sites at all -- I use Drupal or Joomla for just about everything now. |
|
|||
|
Templates can be good for the beginner or for a person who just needs to throw something up quick or a programmer who has no clue how to make a site look nice.
However, there are those little problems such as getting new editable regions. Actually SSI is not much better when it comes to these types of things. Even dynamic has its draw backs. You just have to choose which problems you are willing to work with then go with it.
__________________
Freelancers Gone Wild | Take your advertising to the next level | BLASTOFF! To make money and save money |
|
||||
|
I've been hearing about Drupal and Joomla but don't really know whether I should consider changing from Dreamweaver or not. I've been seeing that more of my clients want a more interactive product lately. Would Drupal or Joomla be better for this than Dreamweaver? Where can I go to find out more about this?
__________________
emsee designs, inc. visual designs for print and the web http://www.emseedesigns.com |
|
|||
|
Yea, Dreamweaver and templates used to be very important tools, but, especially with DW's poor handling of css i'm ready to move on.
You should be able to add metas without an editable region. Just put them under your title. That area is intented to be different on every page.
__________________
Marc Grobman quixo web + graphic design | natural soap and eco friendly gifts | top 10 toddler toys |
|
|||
|
You may consider MODx CMS http://modxcms.com/
|
|
||||
|
I use Frontpage which uses the same template file type as dreamweaver... the .DWT which is also an AutoCAD template file type... argh...
I digress, I use this template for my entire site... the key is changing the file not the file name, replace your template with new template any time you like... but keep the file name the same... Arvana, gets the points... arvana Posted: February 04 2007 Post subject: -------------------------------------------------------------------------------- You need to create an editable region in the head of your template, like this: Code: <head> <title>Untitled Document</title> <meta name="description" content="page description" /> <meta name="keywords" content="keyword 1, keyword 2, keyword 3, etc." /> </head> add that to your template, then use find and replace, or windows explorer to change title and other tags... in the properties of each page you'll also find the areas to customize each page's meta tag... you don't have to edit the html for every page. server side includes can accomplish metatag goals to an extent, but not for each individual page and then it's never really static, and stactic pages are more valuable. I suggest going the route you are currently, using Arvana's suggestions... good luck... |
|
|||
|
DW MX automatically gives you an editable region for this purpose.
Place all the header tags, meta tags etc. inside the editable region on those pages you wish to have the unique tags appear. |
|
||||
|
I use DW and CSS. But rather than using templates, which become problematic if you have a couple of different "versions" I use library items. Same thing but more "target" specific. I can have one for the navigation on the top of the page, and another for the navigation on the left side and a separate one for the footer.
I'm going to have to look into Joomla and Drupal though. I keep hearing others singing their praises! |
|
||||
|
Yes, I guess I was a little off-topic as I never use templates. The snooty artist in me won't allow it, I guess. But I would like to know the learning curve that might be involved in switching from Dreamweaver8 to Drupla, Joomla, or even MODx. I'm really busy now and don't have time to delve into instruction booklets.
__________________
emsee designs, inc. visual designs for print and the web http://www.emseedesigns.com |
|
|||
|
I used Arvanas suggestion and it works a dream. I've been using DW for a long time now and don't ever recall seeing it place these tags automatically???
CMS?? I'm not too sure, they feel a bit like painting by numbers to me. I haven't really delved into what I could do with them but suspect that I'd get little satisfaction from using one... I may be wrong. |
|
|||
|
Quote:
"You can add a Cascading Style Sheet (CSS), timeline, or behavior to a document that is based on a template, because Dreamweaver automatically inserts an editable region in the head section of a document." |
|
||||
|
Quote:
I've been evaluating Expression for an article and I'm just about done. The articles isn't going to be very positive, but beleive it or not it does have some positive points.
__________________
Take a break and watch some stupid video clips |
|
|||
|
There is a lot to be said for learning basic html. It allows you to "see" how a page is built. Try looking at a frontpage page with a basic html editor the page is all over the place! and FP uses empty cells and tables for layout without you ever knowing.....text readers love those!!
The handy thing about templates is it is fast but none the less the lazy option. It is also recognisable and therefore not unique, and whilst I use elements from templates I still built each page. Most of the time I do not need to look at the source of other peoples pages to see what software built the site as Frontpage and DW templates are so obvious. The main problem is the template software dictates to me the designer as to what is or what is not possible. Learning basic HTML can help with templates when the template will not do exactly what you want layout wise so you end up with a dodgy compromise. Try starting with a blank page but no one here has mentioned doc type declarations....still important. This will vary according to what the page is built with. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN"> <HTML> <HEAD> <TITLE>your site title here</TITLE> <META name="Description" content="your site description here"> <META name="Keywords" content="your keywords here"> <META http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <META name="objecttype" content="your page name here or if homepage use....index"> <META name="Category" content="Travel"> <META name="Distribution" content="Global"> <META name="Robots" content="index, follow"> <META name="rating" content="General"> <META name="Language" content="EN"> <META name="Author" content="your name here"> <META name="Copyright" content="your copy right name here"> <META NAME="title" CONTENT="your page title here"> </HEAD> If using a template put it here ..................and off you go with the document properties Hope this is of help, by the way I used to panic about SEO, then with my hair line receding naturally pulling any more out no longer became an option! so I no longer care what my page rank is or if my site is in the top 20 on some search engines and directories or in the top ten in others. Because it means didley squat when it comes to being in the first page of results. I also no longer care what Google is doing to rank pages they change the rules so often they annoy me. (google who?)So I now ignore the search engines. Who are they to tell me how to build my website anyway? Chill........relax.........stay cool.... LEARN HTML! your page will rise!!!! </ASTRO>
__________________
Before you criticize someone, you should walk a mile in their shoes. That way, when you criticize them, you're a mile away and you have their shoes. |
|
|||
|
Quote:
Not quite off-topic: Can someone tell me the effect and SEO insight behind the different usages of: <TITLE>SiteTitle</TITLE> vs <META name="title" content="WebPageSubject" /> Should they be the same? Should the <TITLE> be the same on all pages? (as insinuated by your note) I would appreciate everyone's input on this. (Or point me to a current topic that delves into this thoroughly.
__________________
http://MADEinUSA.org and others. |
|
|||
|
I agree that learning html is empowering and I also agree that building a good site and ingnoring the SEs may be as good a strategy as worrying about SERPS but I am not sure that I see that I see a distinct connection between the two.
You can build a really good site with DW, maybe even with Frontpage, at least you can put a lot of great content out there which is consistent with the build it and they will come strategy. You don't really need to understand much html to manage metatags. Is there some connection that I am missing?
__________________
Candida cleanse |
|
||||
|
I use DW plus PHP and MySQL for the backend ... it's easier to set up metatags because all pages are dynamic, so you can program it to add a keyboards related to your products ... by being dynamic each page can already have an include, so your description is dynamic as well ... is more complex than simple html and css but the flexibility you have allow you to customize your pages and enhance security, because SSL and other protocols are supported, you can also mix html and with php wherever you need it, although is much better to keep code neat and separated, move you html somewhere else and use pure php for the code. With MySQL as the database you can easily customize and create a template system easier to update, without resorting to SSI ...
As you can query your db from php ... so your pages will load faster because they are dynamically generated ... Please bear in mind it is better to use CSS whenever possible, as it is much lighter than HTML ... |
|
|||
|
Yahoo and MSN seem to give a little weight to repeating the title under the meta title. I have seen no negative effect from Google. I recommend you always repeat and also use the words again unter keywords.
|
|
|||
|
hey
it's alway good to double check your site [your design] using lynx browser . this show how bot see you'r site . if you have problem installing the browser ping me . usefull to see link ,menu,and content , btw dont forget to bring the side bar after content. |
|
|||
|
Quote:
It does bug me that SEs move the goal posts so often creating a whole industry just to keep pages returning a reasonable result in the rankings. Lets face it if it was easy why have and pay for AdSense and sponsored links? Does anyone actually click on those? I agree totally with the DHTML principle by the way, and one day if bored enough I may sit down and study it......until that time there are too many good times to be had. smiles to all </ASTRO>
__________________
Before you criticize someone, you should walk a mile in their shoes. That way, when you criticize them, you're a mile away and you have their shoes. |
|
|||
|
Quote:
Just make sure each set of meta data is different. Obviously because each page should be at the very least slightly different.
__________________
Post as-it-happens crime stories of criminal behaviour at crimedigg.com |
|
|||
|
Quote:
Are you using the CSS in your html doc?
__________________
Post as-it-happens crime stories of criminal behaviour at crimedigg.com |
|
|||
|
Quote:
Almost every site is a template.
__________________
Post as-it-happens crime stories of criminal behaviour at crimedigg.com |
|
|||
|
Quote:
And you cannot LOOK at a site and tell if it is written in FP or DW and really who cares if you could? What's the point of that comment? And if I am using DW the software does NOT dictate what is possible. I the designer/developer tell DW what is possible via my knowledge of HTML. Gesh! And no one mentioned doc type declarations because that isn't what the topic was about. Dreamweaver and meta data is that is was about. GESH and good morning!
__________________
Post as-it-happens crime stories of criminal behaviour at crimedigg.com |
|
||||
|
Quote:
Unfortunately, the famous not for profit search engine (DMOZ.org), is run so horribly that it's almost impossible to get into. Therefore narrowing the results for users making the SE less and less significant. And yes people do click the adverts because, especially with google, often that's where the relevant content is. the search results themselves are often filled with link farms (directories) and/or gov sites.
__________________
Take a break and watch some stupid video clips |
|
||||
|
Quote:
|
|
|||
|
I use DW and embed my CSS in the non editable region of the template. Words ok for both our site.
Just a thought. Michael
__________________
Non Piercing Body Jewelry - All the pleasure and none of the pain! - Body Jewelry |
|
|||
|
Quote:
</ASTRO>
__________________
Before you criticize someone, you should walk a mile in their shoes. That way, when you criticize them, you're a mile away and you have their shoes. |
|
||||
|
Quote:
|
|
|||
|
For the sake of a line of code and what it does id bin the meta title aswell.
Hulk is right it doesnt help with seo. |
![]() |
|
| Thread Tools | |
| Display Modes | |
|
|
|
WebProWorld |
Advertise |
Contact Us |
About |
Forum Rules |
MVP's |
Archive |
Newsletter Archive |
Top |
WebProNews
WebProWorld is an iEntry, Inc. ® site - © 2009 All Rights Reserved Privacy Policy and Legal iEntry, Inc. 2549 Richmond Rd. Lexington KY, 40509 |