473,756 Members | 4,444 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Re-sizing problem with my web-page

Hello everyone:

When I view my web-page on different computers, I am having trouble
with re-sizing the screen on some of them. Was wondering what should be
done differently to take care of the resizing problem with the screen?

My banner images are not getting resized to the page.

Here is the sample of my code:

<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html>
<head>
<titleTesting my website- Home Page </title>
</head>
<frameset rows = "30%,*" border = "5" >
<frame name="banner" src ="homepagebanne r.html" bordercolor = yellow
scrolling ="no" >
<frameset cols="15%,*" border = "5">
<frame name ="sidebar" src ="sidebar.ht ml" bordercolor = yellow
scrolling = "no">
<frame name = "main" src = "main.html" >
</frameset>
</frameset>
</html>

Thanks in advance....

Nov 30 '06 #1
3 1393
wrote on 30 nov 2006 in comp.lang.javas cript:
Hello everyone:

When I view my web-page on different computers, I am having trouble
with re-sizing the screen on some of them. Was wondering what should be
done differently to take care of the resizing problem with the screen?
Resizing a screen can only be done by exchanging the monitor, methinks,
so perhaps you could refrase?
My banner images are not getting resized to the page.
Images cannot be displayed on a framespage as you show below.
Here is the sample of my code:

<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html>
<head>
<titleTesting my website- Home Page </title>
</head>
<frameset rows = "30%,*" border = "5" >
<frame name="banner" src ="homepagebanne r.html" bordercolor = yellow
scrolling ="no" >
<frameset cols="15%,*" border = "5">
<frame name ="sidebar" src ="sidebar.ht ml" bordercolor = yellow
scrolling = "no">
<frame name = "main" src = "main.html" >
</frameset>
</frameset>
</html>
I see no javascript here.
This NG is for javascript questios.
Perhaps you better ask in an html ng?
--
Evertjan.
The Netherlands.
(Please change the x'es to dots in my emailaddress)
Nov 30 '06 #2
Daz

re*******@gmail .com wrote:
Hello everyone:

When I view my web-page on different computers, I am having trouble
with re-sizing the screen on some of them. Was wondering what should be
done differently to take care of the resizing problem with the screen?

My banner images are not getting resized to the page.

Here is the sample of my code:

<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html>
<head>
<titleTesting my website- Home Page </title>
</head>
<frameset rows = "30%,*" border = "5" >
<frame name="banner" src ="homepagebanne r.html" bordercolor = yellow
scrolling ="no" >
<frameset cols="15%,*" border = "5">
<frame name ="sidebar" src ="sidebar.ht ml" bordercolor = yellow
scrolling = "no">
<frame name = "main" src = "main.html" >
</frameset>
</frameset>
</html>

Thanks in advance....
I think that screen resolution might be the answer to your question,
unless I am misunderstandin g your question.

In my humble opinion, it's often best to design your website using
absolute dimensions, and assuming that the user has a 800x600 monitor
resolution. If you use absolute dimensions, then you banners should fit
into the frame no matter what.

I think this could be the root of your problem.

If this is not any help, (which I suspect), please could you be more
specific, and perhaps give us a URL where we can see the problem
ourselves?

Nov 30 '06 #3
ASM
re*******@gmail .com a écrit :
Hello everyone:

When I view my web-page on different computers, I am having trouble
with re-sizing the screen on some of them.
You know that browser can be configured to do not accept resizing ?
Was wondering what should be
done differently to take care of the resizing problem with the screen?

My banner images are not getting resized to the page.
???

1) you did fix your banner area in % why ?
couldn't you fix it in px ?
(hight of your image in "homepagebanner .html")

2) you don't give the code of "homepagebanner .html"
how can we help about the size of this banner image(s) ?
Here is the sample of my code:

<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html>
<head>
<titleTesting my website- Home Page </title>
</head>
<frameset rows = "30%,*" border = "5" >
<frame name="banner" src ="homepagebanne r.html" bordercolor = yellow
scrolling ="no" >
<frameset cols="15%,*" border = "5">
<frame name ="sidebar" src ="sidebar.ht ml" bordercolor = yellow
scrolling = "no">
<frame name = "main" src = "main.html" >
</frameset>
</frameset>
</html>

--
Stephane Moriaux et son (moins) vieux Mac déjà dépassé
Stephane Moriaux and his (less) old Mac already out of date
Nov 30 '06 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
6429
by: Craig Bailey | last post by:
Anyone recommend a good script editor for Mac OS X? Just finished a 4-day PHP class in front of a Windows machine, and liked the editor we used. Don't recall the name, but it gave line numbers as well as some color coding, etc. Having trouble finding the same in an editor that'll run on OS X. -- Floydian Slip(tm) - "Broadcasting from the dark side of the moon"
10
4223
by: James | last post by:
What is the best method for creating a Web Page that uses both PHP and HTML ? <HTML> BLA BLA BLA BLA BLA
1
3637
by: joost | last post by:
Hello, I'm kind of new to mySQL but more used to Sybase/PHP What is illegal about this query or can i not use combined query's in mySQL? DELETE FROM manufacturers WHERE manufacturers_id NOT IN ( SELECT manufacturers_id FROM products )
2
106616
by: sky2070 | last post by:
i have two file with jobapp.html calling jobapp_action.php <HTML> <!-- jobapp.html --> <BODY> <H1>Phop's Bicycles Job Application</H1> <P>Are you looking for an exciting career in the world of cyclery? Look no further! </P> <FORM NAME='frmJobApp' METHOD=post ACTION="jobapp_action.php"> Please enter your name:
1
13654
by: Brian | last post by:
I have an array like this: $events = array( array( '2003-07-01', 'Event Title 1', '1' //ID Number (not unique) ), array( '2003-07-02',
1
3828
by: Clarice Almeida Hughes | last post by:
tenho um index onde tenho o link pro arq css, como sao visualizados pelo include todas as paginas aderem ao css linkado no index. so q eu preciso de alguns links com outras cores no css, o q devo fazer?
4
2491
by: Zachary Antolak | last post by:
I implemented a timer in my PHP page to see how long it takes to run. Here's the code: $this->start_time = microtime(); /* All the code */ $this->end_time = microtime(); $this->calc_time = ($this->end_time - $this->start_time); print "<tr><td colspan=\"5\">Calculated in: <b>"; printf("%." . $this->time_precision . "f", $this->calc_time); print " seconds</b></td></tr>\n";
7
3697
by: Christoph Nothdurfter | last post by:
Hallo! I was wondering if my PHP4-Scripts will run under PHP5 (Haeven't tried the beta yet). Does anybody know? Thank you, -Christoph
2
3876
by: poff | last post by:
I have written a forum and am using the following query to search in it: $query="select topics.tid,f_messages.messid from f_messages left join topics on f_messages.tid = topics.tid where ($title_list) OR ($msg_list)"; I trimmed it a bit to save space here (the last two are just strings). It works fine, but it's returning more than once the same topics.tid I want it to return only unique topic id's.
2
3077
by: Nick | last post by:
Im trying to build an array from elements I have stored in a text file (So I can access them on multiple pages). What is the syntax for this? I thought it might be... storedArray1 = array(require_once("/arrays/stored_array_1.txt")); or storedArray1 = array(include("/arrays/stored_array_1.txt"));
0
9431
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9255
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10014
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9844
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
6514
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5119
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5289
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
3326
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2647
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.