|
|
|
|
![]() ![]() |
Feb 28 2006, 02:04 PM
Post
#11
|
|
|
Premium Member Group: Members Posts: 330 Joined: 2-February 06 Member No.: 11,040 |
I make my own templates for my websites but the problenm is that I made a lot of them and they all don't look appealing to me. So I guess I'm going to look for a ready made template online and instead of buying it make a similar template. I don't like using templates because I'd have to pay for one and I want an original layout for my sites.
|
|
|
|
Mar 1 2006, 06:57 AM
Post
#12
|
|
|
Newbie [ Level 2 ] Group: Members Posts: 14 Joined: 1-March 06 Member No.: 11,645 |
It really depends, if you use a template and you KNOW you can make it yourself then thats no problem.
But if you are using a template with no skills then give the maker the credit, dont try and pass it on as your own work or to make your friends think yr cool. Personally i take the idea's / concepts from other templates and combine them to make my own desgins. Wether it be flash / animated or just normal images. |
|
|
|
Mar 1 2006, 12:09 PM
Post
#13
|
|
|
Premium Member Group: [HOSTED] Posts: 318 Joined: 1-March 06 Member No.: 11,638 |
When you designing one from scratch its much better than a template that is given to you. My reason is because for one you made the site with your own creativity, and another reason is because you will further progress your skills in web development if you do it from scratch. And each webpage you make by yourself, your production of webpages will be of better quality ten folds then the template that you find else where...
|
|
|
|
Mar 1 2006, 06:16 PM
Post
#14
|
|
|
Advanced Member Group: Members Posts: 189 Joined: 15-November 05 From: Inland from the Left Coast of Canada Member No.: 9,627 myCENTs:62.43 |
Speaking of CSS, I don't know if its just the geocities webpage that wont let me do it or if I'm doing it wrong, but I just cant get it right. I'm doing it just as the tutorial says and I'm getting so frustrated. Let me see if I have one thing clear. You put the style sheet on a seperate page from the working page and just put a link to it right? RE: css links not working http://www.astahost.com/index.php?act=Post...0737&qpid=71390 lonebyrd, Create your css file in a simple text editor like notepad and save it as a "css" file extension. ie: style_file_name.css Upload into your hosting space in the same directory as the html files. Inside the head tags of the html file, include the link to the css file . CODE <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>An XHTML 1.0 Strict standard template</title> <meta http-equiv="content-type" content="text/html;charset=utf-8" /> <link href="style_file_name.css" type="text/css" ref="stylesheet" media="all" /> </head> <body> <p>... Your HTML content here ...</p> </body> </html> This is the format for an xhtml 1.0 doc type strict which can be found at the w3c site (I think that's where I snagged it from). If IE gives you any problems, try deleting the line before the DocType in order the change to/from standard/quirks mode. (I can never remember which one is which). But that sometimes is an issue. Are you saying that the linking doesn't work? or are you saying that the style doesn't work as planned? If the link is failing, then include the css in the files by using a style tag. Like this: CODE <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>An XHTML 1.0 Strict standard template</title> <meta http-equiv="content-type" content="text/html;charset=utf-8" /> <style type="text/css"> body { } div { } #content { } #header { } #footer { } </style> </head> <body> <p>... Your HTML content here ...</p> </body> </html> If the style doesn't work, then that is a whole other can of worms. Post back here (on a new topic in the HTML sub-forum) and we'll either assist you or point you in another direction. Hope this helps. Mods/Admin : Merge or Move as required. Thanks. |
|
|
|
Mar 1 2006, 10:42 PM
Post
#15
|
|
|
Nenad Bozidarevic Group: [MODERATOR] Posts: 1,049 Joined: 7-November 05 From: Belgrade, Serbia Member No.: 9,500 myCENTs:9.92 |
CMS is the best thing to use if you want a good-looking site without too much effort. It usually has a wide range of templates and you can customize the content arrangement. It also has a great way of controling the content - much more easy then a html template.
|
|
|
|
Mar 5 2006, 08:33 AM
Post
#16
|
|
|
Member [ Level 1 ] Group: Members Posts: 34 Joined: 21-February 06 Member No.: 11,447 |
I use and create my own design. Why copy when you have talent to imagine and produce new ideas? There's nothing more beautiful even with the ugliest but original artwork.
|
|
|
|
Mar 7 2006, 05:10 AM
Post
#17
|
|
|
Super Member Group: Members Posts: 595 Joined: 4-September 04 Member No.: 228 |
I've never used templates. Designing the site layout, picking the colours and doing testing is the most fun part of doing websites. That's why I never have felt the need to use ready templates.
Full CMS's have their benefits with good integration of the different parts of the site, and naturally you have to take care of lot less things. But then again they tend to limit your options. I've never used a CMS, I rather try to integrate my own systems to forums and so on. |
|
|
|
Mar 7 2006, 05:16 AM
Post
#18
|
|
|
Premium Member Group: [HOSTED] Posts: 438 Joined: 28-January 06 Member No.: 10,925 |
Making your own template would also be good because you don't have to have those copywrites on your site, even though, they do sometimes look a bit plainer and the premade ones look very good
|
|
|
|
Mar 12 2006, 03:25 PM
Post
#19
|
|
|
Newbie [ Level 1 ] Group: Members Posts: 6 Joined: 12-March 06 From: India Member No.: 11,922 |
Hello,
I think that using your own design is much better because it's much more stisfying when you look at it and it looks more original. It takes quite a bit of time to get it to a perfect level and it takes a lot of hard work to create your own graphics and other stuff but it works for me! This post has been edited by Arnie K: Mar 12 2006, 03:29 PM |
|
|
|
Mar 13 2006, 02:19 PM
Post
#20
|
|
|
Premium Member Group: Members Posts: 330 Joined: 2-February 06 Member No.: 11,040 |
When you designing one from scratch its much better than a template that is given to you. My reason is because for one you made the site with your own creativity, and another reason is because you will further progress your skills in web development if you do it from scratch. And each webpage you make by yourself, your production of webpages will be of better quality ten folds then the template that you find else where... What I meant was I got skills and I can make any page I see from ready-made templates. But hwat I can't do are the ones I can see in my mind. I can't project it through my own made templates. I think that If I continue to copy those ready-made templates, I will be just a copier and have no original creation, but if I use those templates in order to let my creativity grow, then I'll learn how to project my own from my mind. |
|
|
|
![]() ![]() |
Similar Topics
|
Lo-Fi Version | Time is now: 5th December 2008 - 04:38 PM |