Friday 7 October 2011

Trying to fix a website design problem?

Hello



I created this web-site %26quot;hardenorganization%26quot;dot%26quot;com in dreamweaver I haven't linked the pages as of now, but my question is%26quot; when you go to the home page it loads up in slices how do you correct that so it loads like a normal website?%26quot; and also how do I change that %26quot;index%26quot; home page in google



Thanks, any help would b great



Trying to fix a website design problem?You should consider some good design practices, you basically just used images for everything, which is very bad, espicually when the same is easily done using HTML and CSS alone.



If you insist on using images, then i highly suggest you take advantage of a well-known technique known as CSS Spirites, see also: http://www.brugbart.com/Articles/119/ - CSS Sprites



For your second question, you need to change this %26quot;%26lt;title%26gt;index%26lt;/title%26gt;%26quot; in your source-code, see also: http://www.brugbart.com/References/82/ - HTML TITLE Tag



Most important is the missing doctype on your website, this could potintially lead to incorrect rendering of your page in any browser. Its also a huge mistake to use tables for layout, what you are doing can easily be done using CSS with far less markup. See also: http://www.brugbart.com/Articles/4/ - The Importance of Doctypes



You should also avoid using deprecated attributes and elements in your site, generally they should be avoided in new websites/documents.