PDA

View Full Version : Higher Resolutions



Doug
09-10-2004, 06:25 AM
How do I get a website to appear normal on higher resolution screens?

chromate
09-10-2004, 06:47 AM
Depends what you mean by normal. What exactly is the problem on higher res screens?

Use percentages if need be.

Doug
09-10-2004, 07:24 PM
I guess it is kind of hard to explain. Like when a web page starts over again on a higher resolution monitor. Im not to sure how to fix that problem. I still don't know if my decription of the problem is good enough either.

James
09-10-2004, 07:27 PM
.........................starts over again?

eMEraLdwPn
09-10-2004, 10:18 PM
instead of using <body background = "image.jpg"> you should have <body bgcolor="#(background color of image)"> and then <center><img src="image.jpg"></center>

and your site doesn't work in mozilla, it just loads the source code...

intelliot
09-13-2004, 08:15 PM
within <head> </head>

<style type="text/css">
<!--
body {background-image: url(background.gif); background-repeat: no-repeat;}
-->
</style>

default is repeat

Doug
09-13-2004, 08:37 PM
thanks intelliot

James
09-16-2004, 10:32 PM
Website and backgrounds are two very different things :|

The New Guy
09-17-2004, 05:08 AM
within <head> </head>

<style type="text/css">
<!--
body {background-image: url(background.gif); background-repeat: no-repeat;}
-->
</style>

default is repeat


Pfft.

background: transparent url('background.gif') no-repeat top center;