i need help fitting my webpage to screen? using "publisher" and also help publishing the page to my server?
my employer has already subscribed to a hosting company "domainking.com" and uses a "linux" system "cpanel" company
Publisher is NOT a web page editor. You’re pages are not going to work in all browser windows because Publisher/FrontPage/Word all insert so much Micro$oft schema code other browsers just don’t understand it. Only IE products will.
Check out following site for info on how to make a flexible page:
http://www.alistapart.com/articles/holygrail
Make a Webpage:
Beginner’s HTML Tutorial: http://www.htmlbasix.com/
How to Create a Webpage: http://www.make-a-web-site.com/
HTML Tutorial: http://www.hypergurl.com/whatishtml.html
More info: http://www.hypergurl.com/
Web Site Blog: http://www.instant-web-site-tools.com/blog/
http://www.w3schools.com/site/default.asp
How to Start / Create Your Own Website: The Beginner’s A-Z Guide: http://www.thesitewizard.com/gettingstarted/startwebsite.shtml
http://www.snappages.com/
Ron
|
You have choosen the "right" server (Linux). That’s a first step.
To have your site fitting ALL screen resolutions, you need to design it as a "liquid layout", that is, a layout that stretches or shrinks following the screen width (or, to be more precise, the "window width", as the browser may not have been maximized).
To do this, you set all your tables or divisions with a total width of 100%.
Example with tables:
<table width="100%">
<tr>
<td width="70%">Col1</td>
<td width="30%">Col2</td> (( total = 100% ! ))
</tr></table>
If you want it "centered", but leaving a margin:
<table width="80%" align="center">
<tr>
<td width="70%">Col1</td>
<td width="30%">Col2</td> (( total = 100% of the 80%! ))
</tr></table>
This one will give you margins of 10% each side. (10% margin, 80% table, 10% margin)
(The same applies to <div> tags)
———–
Publisher is not the best program to design web-pages: it is actually designed to make "things" to be printed ("published"), like leaflets or posters. A better solution if you have limited knowledge of coding would be to use something like Dreamweaver. (I hate it, but it is a matter of taste)
———-
To upload your site to your server, you can log-in through Cpanel, and use "file maintenance": it has a file upload facility that allows you to upload your pages to the server.
If you use and IDE like Dreamweaver, you can set it up to upload the files to your server directly.
Finally, you can download FTPexplorer (I think it is still free), to upload FAST to your server. I have used it for many years.
References :
Pro web2 application developer at http://www.web2coders.com and http://www.lobidauctions.com
Publisher is NOT a web page editor. You’re pages are not going to work in all browser windows because Publisher/FrontPage/Word all insert so much Micro$oft schema code other browsers just don’t understand it. Only IE products will.
Check out following site for info on how to make a flexible page:
http://www.alistapart.com/articles/holygrail
Make a Webpage:
Beginner’s HTML Tutorial: http://www.htmlbasix.com/
How to Create a Webpage: http://www.make-a-web-site.com/
HTML Tutorial: http://www.hypergurl.com/whatishtml.html
More info: http://www.hypergurl.com/
Web Site Blog: http://www.instant-web-site-tools.com/blog/
http://www.w3schools.com/site/default.asp
How to Start / Create Your Own Website: The Beginner’s A-Z Guide: http://www.thesitewizard.com/gettingstarted/startwebsite.shtml
http://www.snappages.com/
Ron
References :
Free Editors:
Free HTML Editors, Web Editors, and WYSIWYG Web Editors and Site Builders: http://www.thefreecountry.com/webmaster/htmleditors.shtml#htmleditors
PageBreeze (both a visual and html source editor): http://www.pagebreeze.com/download.htm
Useful Tools/Info:
http://hapedit.free.fr/tools.php
How to Register Your Own Domain Name: http://www.thesitewizard.com/archive/registerdomain.shtml
What is Favicon.ico and How to Create a Favicon Icon for Your Website: http://www.thesitewizard.com/archive/favicon.shtml