473,624 Members | 2,290 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Can somebody hold my hand?

After four+ years of using FrontPage in a limited capacity and having
created over 600 pages on my sites, I've finally (at least for the most
part) abandoned FP, to begin the process of converting those pages.
There are some things (a result of this transition,) which I'm not too
happy about :-(
I'm using 1st Page 2000. Much of my content is created in Word and then cut
and pasted from Word-to-NotePad-to-the page. Formerly with FP the paragraph
margins were "intact" when copying from NotePad and into the HTML. With 1st
Page this is not so and the paragraph open and closing must be added
manually, or at least with a keyboard created shortcut.
enough rambling. . . .

Thanks to the assistance of Brucie's position-thingy and another's
image-float wrap and a CSS book, I've settled on a beginning.
http://www.mi-harness.com/publct/lvnglgd.html

I'm left with three problems, which I'm hoping somebody may help with?
1) Upon opening the page and narrowing your browser, you'll see that the
text does not STAY wrapped around the floating index?
Is this an error I've made and/or is there a correction?
2) I've inserted four images through the long document. Is it possible
(rather than having the big void of space) to wrap the preceding lines
around the image while still retaining its current position on its present
line?
3) I don't believe the "<br>" I'm currently using in the h1 and h2's is
proper?
4) The background color in the menu displays as desired (behind the entire
menu) in IE, however in both Netscape 6.2 and Mozilla Firebird the
background color only gets the top half of the menu?

Before I begin converting many pages over to this layout and progressing
further in the book I have with other designs? I'm hoping somebody can help
me to "understand the error of my ways?"
Thanks in advance
Jul 20 '05 #1
6 1925
"lostinspac e" <lo*********@12 3-universe.com> wrote in
news:55******** **************@ newssvr28.news. prodigy.com:
http://www.mi-harness.com/publct/lvnglgd.html

I'm left with three problems, which I'm hoping somebody may help with?
1) Upon opening the page and narrowing your browser, you'll see that
the text does not STAY wrapped around the floating index?
That's because it isn't actually floating, it's absolutely positioned.
Remember that absolute positioning pulls an element out of the layout flow
(i.e. the rest of the page is layed out as if the positioned element
didn't exist at all), and then sticks it in whatever position you
specified, which in this case will be on top of the right-hand side of the
first few lines of text. If you want text to flow around an element, use a
float rather than absolute positioning.

I changed your style declaration to:

#menu {
float:right;
WIDTH: 19ex;
BACKGROUND-COLOR: #CCFFFF;
}
(you forgot the "#" before the color code, BTW)

and moved the menu div to where the empty "float" div was toward the
beginning of the body.
2) I've inserted four images through the long document. Is it possible
(rather than having the big void of space) to wrap the preceding lines
around the image while still retaining its current position on its
present line?
Yes: the reason it's not working for you is that you failed to put quote
marks around the values of your inline style attributes. They're getting
interpreted as 'style="float"' which is invalid and won't do anything.
Validating your HTML would have caught that right away (just as validating
your CSS would have caught the incorrect color codes).
3) I don't believe the "<br>" I'm currently using in the h1 and h2's
is proper?
It's valid HTML (<Hx> allows anything in %inline; as content, and <BR> is
an inline element), but it does result in a visually unbalanced look when
viewing in a large browser window.
4) The background color in the menu displays as desired (behind the
entire menu) in IE, however in both Netscape 6.2 and Mozilla Firebird
the background color only gets the top half of the menu?


That was because you set the height of your menu div to something less than
the height of the actual contents, so the contents overflowed it. When
that happens the background color isn't supposed to overflow with them, but
IE is rather buggy.
Jul 20 '05 #2
Eric Bohlman <eb******@earth link.net> wrote in
news:Xn******** *************** ********@130.13 3.1.4:
4) The background color in the menu displays as desired (behind the
entire menu) in IE, however in both Netscape 6.2 and Mozilla Firebird
the background color only gets the top half of the menu?


That was because you set the height of your menu div to something less
than the height of the actual contents, so the contents overflowed it.
When that happens the background color isn't supposed to overflow
with them, but IE is rather buggy.


Just to amplify a bit, when you're having problems like this a very useful
debugging technique is to temporarily specify a border for the element in
question; I just stuck a "border: 1px solid red;" in the rule for #menu and
right away I saw the problem; the red box was half the size of the menu
with the links spilling out the bottom.
Jul 20 '05 #3

----- Original Message -----
From: "Eric Bohlman" <>
Newsgroups: comp.infosystem s.www.authoring.stylesheets
Sent: Wednesday, December 03, 2003 8:44 PM
Subject: Re: Can somebody hold my hand?

"lostinspac e" <> wrote in
:
http://www.mi-harness.com/publct/lvnglgd.html

I'm left with three problems, which I'm hoping somebody may help with?
1) Upon opening the page and narrowing your browser, you'll see that
the text does not STAY wrapped around the floating index?
That's because it isn't actually floating, it's absolutely positioned.
Remember that absolute positioning pulls an element out of the layout flow
(i.e. the rest of the page is layed out as if the positioned element
didn't exist at all), and then sticks it in whatever position you
specified, which in this case will be on top of the right-hand side of the
first few lines of text. If you want text to flow around an element, use

a float rather than absolute positioning.

I changed your style declaration to:

#menu {
float:right;
WIDTH: 19ex;
BACKGROUND-COLOR: #CCFFFF;
}
(you forgot the "#" before the color code, BTW)

and moved the menu div to where the empty "float" div was toward the
beginning of the body.
2) I've inserted four images through the long document. Is it possible
(rather than having the big void of space) to wrap the preceding lines
around the image while still retaining its current position on its
present line?
Yes: the reason it's not working for you is that you failed to put quote
marks around the values of your inline style attributes. They're getting
interpreted as 'style="float"' which is invalid and won't do anything.
Validating your HTML would have caught that right away (just as validating
your CSS would have caught the incorrect color codes).
3) I don't believe the "<br>" I'm currently using in the h1 and h2's
is proper?


It's valid HTML (<Hx> allows anything in %inline; as content, and <BR> is
an inline element), but it does result in a visually unbalanced look when
viewing in a large browser window.
4) The background color in the menu displays as desired (behind the
entire menu) in IE, however in both Netscape 6.2 and Mozilla Firebird
the background color only gets the top half of the menu?


That was because you set the height of your menu div to something less

than the height of the actual contents, so the contents overflowed it. When
that happens the background color isn't supposed to overflow with them, but IE is rather buggy.

Many thanks for your help Eric.
Although the errors you have caught are correct, they only move me back
further in the line of my goal :-(

"and moved the menu div to where the empty "float" div was toward the beginning of the body."


The entire reason for using the layout as was originally designed (with the
open divide [at least I'm assuming that] was so that the SE's and Lynx will
view the page content prior to viewing the menu's. It appears to me that if
I swap the old positions (empty div, top of body, and menu div, bottom of
body) than the menu will likely come up first :-(
Not what I desire. Very bad for SE page page return results.

Unfortunately, no matter what I do or what browser I use, am I able to get
the menu background to view properly.

I tried the change you suggested:

#menu {
float:right;
WIDTH: 19ex;
BACKGROUND-COLOR: #CCFFFF;
}

without the div change and in 1st page, Netscape and IE and they all failed.
I tried adding the HEIGHT back in and that failed too.

Regarding the four images within the content?
I was hoping for a center position with text wrap on the lines I had them
previously.
I did go back in to the CSS book I have and it supported the "" along with
ONLY the left or right placement :-(

Actually I could use the thing as I had it previously.
I just won't view as desired in WEB-TV. ( kinda doubt anybody else, besides
PDA's and other such nonsense is viewing a screen lower that 500 pixels.)
In any event in-its current form and until I find a solution, it would be
both senseless and impossible to begin converting 600 pages.
Thanks again.

Guess the FP pages stay online :-(
Jul 20 '05 #4
----- Original Message -----
From: "lostinspac e" <>
Newsgroups: comp.infosystem s.www.authoring.stylesheets
Sent: Wednesday, December 03, 2003 10:03 PM
Subject: Re: Can somebody hold my hand?


----- Original Message -----
From: "Eric Bohlman" <>
Newsgroups: comp.infosystem s.www.authoring.stylesheets
Sent: Wednesday, December 03, 2003 8:44 PM
Subject: Re: Can somebody hold my hand?

"lostinspac e" <> wrote in
:
http://www.mi-harness.com/publct/lvnglgd.html

I'm left with three problems, which I'm hoping somebody may help with?
1) Upon opening the page and narrowing your browser, you'll see that
the text does not STAY wrapped around the floating index?
That's because it isn't actually floating, it's absolutely positioned.
Remember that absolute positioning pulls an element out of the layout flow (i.e. the rest of the page is layed out as if the positioned element
didn't exist at all), and then sticks it in whatever position you
specified, which in this case will be on top of the right-hand side of the first few lines of text. If you want text to flow around an element, use a
float rather than absolute positioning.

I changed your style declaration to:

#menu {
float:right;
WIDTH: 19ex;
BACKGROUND-COLOR: #CCFFFF;
}
(you forgot the "#" before the color code, BTW)

and moved the menu div to where the empty "float" div was toward the
beginning of the body.
2) I've inserted four images through the long document. Is it possible
(rather than having the big void of space) to wrap the preceding lines
around the image while still retaining its current position on its
present line?
Yes: the reason it's not working for you is that you failed to put quote
marks around the values of your inline style attributes. They're

getting interpreted as 'style="float"' which is invalid and won't do anything.
Validating your HTML would have caught that right away (just as validating your CSS would have caught the incorrect color codes).
3) I don't believe the "<br>" I'm currently using in the h1 and h2's
is proper?


It's valid HTML (<Hx> allows anything in %inline; as content, and <BR> is an inline element), but it does result in a visually unbalanced look when viewing in a large browser window.
4) The background color in the menu displays as desired (behind the
entire menu) in IE, however in both Netscape 6.2 and Mozilla Firebird
the background color only gets the top half of the menu?


That was because you set the height of your menu div to something less

than
the height of the actual contents, so the contents overflowed it. When
that happens the background color isn't supposed to overflow with them,

but
IE is rather buggy.

Many thanks for your help Eric.
Although the errors you have caught are correct, they only move me back
further in the line of my goal :-(

"and moved the menu div to where the empty "float" div was toward the
beginning of the body."


The entire reason for using the layout as was originally designed (with

the open divide [at least I'm assuming that] was so that the SE's and Lynx will view the page content prior to viewing the menu's. It appears to me that if I swap the old positions (empty div, top of body, and menu div, bottom of
body) than the menu will likely come up first :-(
Not what I desire. Very bad for SE page page return results.

Unfortunately, no matter what I do or what browser I use, am I able to get
the menu background to view properly.

I tried the change you suggested:

#menu {
float:right;
WIDTH: 19ex;
BACKGROUND-COLOR: #CCFFFF;
}

without the div change and in 1st page, Netscape and IE and they all failed. I tried adding the HEIGHT back in and that failed too.

Regarding the four images within the content?
I was hoping for a center position with text wrap on the lines I had them
previously.
I did go back in to the CSS book I have and it supported the "" along with
ONLY the left or right placement :-(

Actually I could use the thing as I had it previously.
I just won't view as desired in WEB-TV. ( kinda doubt anybody else, besides PDA's and other such nonsense is viewing a screen lower that 500 pixels.)
In any event in-its current form and until I find a solution, it would be
both senseless and impossible to begin converting 600 pages.
Thanks again.

Guess the FP pages stay online :-(


Eric,
After my initial reply, I began tinkering.
I was able to make the page function as you explained. In that capacity it
did even function as you explained in WEB-TV.

The problem however with the page in that capacity is as I explained that
the menu does go directly below the h1 header and above the remaining page
content.
That page is up at http://www.mi-harness.com/publct/lvnglgdNEW.html
I do like the look of the menu being below the h1 :-)

I may decide to use the initial layout I had. In spite of the header wrap
problem.
To me that little flaw is far out-weighed by the significance of having the
SE's see the
content prior to seeing the sub-links.

I'm such a putz :-(
I spend so much time in acquiring and preparing the content and then
creating titles, descriptions and keywords (I know, I know,) that the amount
of time I'm generally willing to spend tinkering with new design is limited.
I'd much rather being spending that time gathering more content.

Thanks again for your help.
Jul 20 '05 #5
"lostinspac e" <lo*********@12 3-universe.com> wrote in
news:EO******** **************@ newssvr28.news. prodigy.com:
I may decide to use the initial layout I had. In spite of the header
wrap problem.
To me that little flaw is far out-weighed by the significance of
having the SE's see the
content prior to seeing the sub-links.


I did manage to figure out how to solve that problem (I was able to create
a float that would contain the menu, and then put the menu at the bottom
and absolutely positioned it into the space occupied by the float). I also
fixed some problems involving the pictures at the bottom of the page
(because of varying heights, they didn't line up correctly). You can take
a look at the results in <http://www.omsdev.com/harness/lvnglgd.html>; note
that the hrefs to the pictures will have been renamed, since I captured it
using Opera's "save with images" option. Also note that I haven't fixed
most of the validity problems, and only fixed the first two inline images.

email me when you've picked it up so I can take it down.
Jul 20 '05 #6
lostinspace wrote:
3) I don't believe the "<br>" I'm currently using in the h1 and h2's
is proper?


I sometimes use it to separate main and sub-title, e.g.:

<h1>My First Book<br />
<span class="subTitle ">By John Miller</span></h1>

<h2>Preface</h2>

<p>...</p>

<h2>Chapter I: What Got Me Started</h2>

<p>...</p>

Perfectly valid to me, as I don't see how "By John Miller" would better
suit as "<h2>".
Jul 20 '05 #7

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

Similar topics

1
1529
by: Luke A. Guest | last post by:
Hi, Say, I have my entity: <!ENTITY BLAH "˙"> <!-- 255 --> and I have an element: <ITEM>&BLAH;Some crap</ITEM>
13
2527
by: Jeff Melvaine | last post by:
I note that I can write expressions like "1 << 100" and the result is stored as a long integer, which means it is stored as an integer of arbitrary length. I may need to use a large number of these, and am interested to know whether the storage efficiency of long integers is in danger of breaking my code if I use too many. Would I do better to write a class that defines bitwise operations on arrays of integers, each integer being assumed...
2
1387
by: Lau Lei Cheong | last post by:
Hello everyone, I was believing that the life of ASP.NET objects will end as soon as the origionating Page object transmitted the response stream and frees, even if you haven't explicitly free the objects, but now I'm not quite sure. It happened to me that I have a ASP.NET page that'll read images from the server to generate another image. For quick hand I've used the code like this in order to "save" one variable declaration. (The...
5
1471
by: NewToCPP | last post by:
There are several occations where we write onto someone else' memory region. Is there any debugging mechanism to find out which part of the code is causing this problem?
10
7544
by: danibe | last post by:
I never had any problems storing pointers in STL containers such std::vector and std::map. The benefit of storing pointers instead of the objects themselves is mainly saving memory resources and performance (STL containers hold *copies* of what's passed to them via the insert() method). However, I am not sure how to accomplish that using std::set. For various reasons, I cannot use vector or map in my application. But I would like to...
1
1249
by: gretel | last post by:
I am new to Java(really new) and I am learning it through BlueJ. This assignment probably sounds easy and it might be easy to me in a few months but right now it is like Chinese. I have an assignment to hand in and I don't know what to do with it, I am really stuck and would apprecaite any help. Basically I have to set up two classes (one called Student and one called PilotGroup) and Student class should deal with all the individual...
103
6812
by: Tom | last post by:
How do we get out of the browser infinite loop quicksand when we navigate to web pages designed to lock us in and force us to hit the "pay me" button (whatever they want to force you to do)? These are just a sample of nasty quicksand web pages I've run into which lock your browser into a loop and won't let you get out until you hit the "install" or "run" or "OK" button... (whatever it is they want you to do). http://www.spywareiso.com...
6
2268
by: fido19 | last post by:
Once upon a time, there lived a chimpanzee called Luycha Bandor (aka Playboy Chimp). Luycha was unhappily married to Bunty Mona, a short but cute little lady chimp. Luycha was tall and handsome – he was feeling uncomfortable taking Bunty to public places along with him. People would stare at them all the while. At one point, Luycha could not stand it anymore and he decided to do some justice to his name. He started looking for a new hope in...
9
3185
by: ahilar12 | last post by:
1. <head> 2. <script type="text/javascript"> 3. </script> 4. </head> 5. <body> 6. <form> 7. <select name="team" id="mylist" > 8. <option></option> 9. <option>north</option> 10. <option>south</option>
0
8175
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
8680
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
8625
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
8482
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
7168
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6111
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4177
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2610
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1791
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.