Web design mistakes?
Posted by Admin in Web Design on August 24th, 2009
Just what are the most common mistakes on web design? 600 Host UK explains:
- Messy & confusing
- Annoying pop up windows
- Terrible slow web site loads
- TO much Java used
- Bad overall design
- HTML tables not used correctly
- Spelling/Grammar mistakes
- Poorly organized
- No contact info
- Nothing to explain ‘about us’ page
- No privacy policy to secure visitors concerns.
- Design backgrounds on each page
- Poorly wrote content
- Bad navigation
- Powerful music set to auto play
- Broken HTML code links and graphics
More web design mistakes coming soon……
CSS Backgrounds!
Solid Backgrounds in CSS
If you wish to change the background color of your page insert the following css code and change the hex value #000000 (black) to the color of your choice.
body {background-color: #000000;}To change the background of your web page to an image insert the following, change the link directory images/bg.jpg to the link where your image is located.
body {background-image: url(images/bg.jpg);}Once your image is in place you may want to add a solid color to fill the space the image might not cover on higher resolution monitors. To do so use the following code and replace the hex value #000000 (black) to the color of your choice, and the image link images/bg.jpg with a link to your image.
body {background-image: url(images/bg.jpg); To repeat the the background image use the following code. Change the directory link images/bg.jpg to your images link.
body {background-image: url(images/bg.jpg); background-repeat: repeat;}