Ask a Question related to ASP, Design and Development.
-
Dean J. Garrett #1
Auto resize web page?
Has anyone developed a web page that automatically senses the screen
resolution of the incoming browser and dynamically resizes content
accordingly? For instance, an 800x600 resolution user might see 3 columns of
product thumbnail images, whereas a 1024x768 user would see 4 columns. Of
course, the thumbs are data-driven. Is this possible and/or advisable??
Thanks!
Dean J. Garrett Guest
-
How to resize a single page?
A strange thing happens when I create a new PDF from multiple JPEGs. Sometimes, individual pages will be radically different sizes. I took two... -
Page Shuffling for with Auto Page Numbering
I'm laying out a 50 page book to print. The book will consist of letter size pages that are folded and stapled down the middle. In order to do so,... -
AUTO RESIZE HEIGHT HELP!!!!!!!
Hi everyone, God help me I can not get my site www.inwd.com.au/allaince (which is in a table set at 100% height) to auto resize the height for... -
Page Resize
I'm putting together a document of several hundred pages for a CD-ROM. Some of the PDFs are odd sizes (blueprint, 11x17). Most are 8.5 x 11. If I use... -
Reload page on resize?
I've finally got a menu built and it works great! Only one problem I have noticed... Flash HATES to be scaled! Okay here it is, PROBLEM: When... -
Evertjan. #2
Re: Auto resize web page?
Dean J. Garrett wrote on 08 sep 2003 in
microsoft.public.inetserver.asp.general:> Has anyone developed a web page that automatically senses the screen
> resolution of the incoming browser and dynamically resizes content
> accordingly? For instance, an 800x600 resolution user might see 3
> columns of product thumbnail images, whereas a 1024x768 user would see
> 4 columns. Of course, the thumbs are data-driven. Is this possible
> and/or advisable??
Yes it is easily done with css:
<% for i=0 to 200 %>
<img src="images/thumb-nr<%=i%>.jpg"
style="float:left;margin-right:20px;">
<% next %>
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Evertjan. Guest
-
Dan Brussee #3
Re: Auto resize web page?
On Mon, 8 Sep 2003 14:36:57 -0700, "Dean J. Garrett"
<deanj_garrett@yahoo.com> wrote:
This is really not that difficult to do. Just dont use tables. As soon>Has anyone developed a web page that automatically senses the screen
>resolution of the incoming browser and dynamically resizes content
>accordingly? For instance, an 800x600 resolution user might see 3 columns of
>product thumbnail images, whereas a 1024x768 user would see 4 columns. Of
>course, the thumbs are data-driven. Is this possible and/or advisable??
>
as you implement tales, you end up having to decide how many columns
there are. If you have to use tables, keep the thumbnails out of it.
<table>
<tr><td colspan=2>header</td></tr>
<tr>
<td>menu??</td>
<td>
thumbnail
thumbnail
thumbnail
thumbnail
thumbnail
thumbnail
</td>
</tr>
</table>
This way, the thumbails fill the room available and wrap to thenext
row when necessary.
Dan Brussee Guest
-
Dean J. Garrett #4
Re: Auto resize web page?
A good example, of what I'm talking about is amazon.com. I try their site at
various resolutions, and each time the site utilizes the screen completely.
Do they use css for this, or?
Thanks!!
"Dean J. Garrett" <deanj_garrett@yahoo.com> wrote in message
news:#UQVgEldDHA.2804@TK2MSFTNGP11.phx.gbl...of> Has anyone developed a web page that automatically senses the screen
> resolution of the incoming browser and dynamically resizes content
> accordingly? For instance, an 800x600 resolution user might see 3 columns> product thumbnail images, whereas a 1024x768 user would see 4 columns. Of
> course, the thumbs are data-driven. Is this possible and/or advisable??
>
> Thanks!
>
>
>
Dean J. Garrett Guest
-
Dan Brussee #5
Re: Auto resize web page?
On Thu, 11 Sep 2003 16:06:43 -0700, "Dean J. Garrett"
<deanj_garrett@yahoo.com> wrote:
What you are looking at on Amazon is a table (in a simplistic view)>A good example, of what I'm talking about is amazon.com. I try their site at
>various resolutions, and each time the site utilizes the screen completely.
>Do they use css for this, or?
>
>Thanks!!
>
>
>"Dean J. Garrett" <deanj_garrett@yahoo.com> wrote in message
>news:#UQVgEldDHA.2804@TK2MSFTNGP11.phx.gbl...>of>> Has anyone developed a web page that automatically senses the screen
>> resolution of the incoming browser and dynamically resizes content
>> accordingly? For instance, an 800x600 resolution user might see 3 columns>> product thumbnail images, whereas a 1024x768 user would see 4 columns. Of
>> course, the thumbs are data-driven. Is this possible and/or advisable??
>>
with 3 columns. The table is set to use 100% of the available width.
The first and third columns have a set width and the middle column is
allowed to fill the rest by not having a width set.
<table width=100%>
<tr>
<td width=200>left</td>
<td>
Middle fills up with this text
Middle fills up with this text
Middle fills up with this text
Middle fills up with this text
Middle fills up with this text
Middle fills up with this text
Middle fills up with this text
Middle fills up with this text
Middle fills up with this text
Middle fills up with this text
</td>
<td width=200>right</td>
</tr>
</table>
Dan Brussee Guest



Reply With Quote

