Publishers of technology books, eBooks, and videos for creative people

Home > Articles > Web Design & Development

This chapter is from the book

Designing a Web page using floating boxes

Floating boxes let you divide a Web page into rectangles that can be formatted and positioned individually. They represent DHTML layers, which means you can overlap, hide and show, and animate them on the page. They can contain any HTML element that a page can contain, such as text, an image, or another floating box. However, some Web browsers may have problems with floating boxes that contain tables or layout grids. If you embed a floating box within another floating box, the embedded box inherits any cascading style sheet information from the parent box.

NOTE

To display properly, floating boxes require Web browser version 4.0 or later. To see what a floating box would look like in a browser that doesn't support cascading style sheets (floating boxes are built with cascading style sheets), turn off CSS Support in the browser's settings, as described in "Exploring style sheets" on page 425. Be sure to turn CSS support back on when you are finished.

Now you'll design a new page for the site using floating boxes. This page will provide users with information on this week's hottest buy at Gage Vintage Guitars. First you'll create a new page.

  1. In the site window, click the Files tab.

  2. iconDrag the Generic Page icon from the Site set ()in the Objects palette to the pages folder in the Files tab of the site window.

    Figure 45Adding new page to pages folder

    A new page is added to the pages folder and appears in the Files tab of the site window. Note the empty-page alert icon that indicates the status of the new page.

  3. Enter hottest.html to rename the file, and then double-click the hottest.html file to open it.

    The hottest.html file opens in the Layout Editor of the document window. First you'll change the title of the page.

  4. Enter Hottest Buy as the new title. Select the default title next to the Page icon () in the upper left corner of the document window, and enter the new title.

    Now you'll change the background color of the page. Using the custom color palette, you can easily match the background color of the Hottest Buy page with the background color of the Appraisal page. You've already learned how to add a site color using the Colors tab in the site window. Now you'll learn how to add a site color using the Site Color list in the Color palette.

  5. In the Site Color list () in the Color palette, select the color named "page" so that it appears in the preview pane.

  6. Drag the color from the preview pane to the Page icon in the upper left corner of the document window.

    Figure 46Changing page’s background color

    The background color of the page changes to khaki.

    Now you'll add the navigation bar to the page, as you did with the other pages for the site.

  7. In the Site Extras set () in the Objects palette, make sure that Components is chosen from the menu in the lower right corner of the palette.

  8. Drag the navbar.html icon from the Objects palette to the upper left corner of the page.

    The navigation bar is added to the top of the page, and the Inspector changes to the Component Inspector.

  9. Choose File > Save to save hottest.html.

Adding the first floating box

Now you'll add a floating box to the page. You'll use this floating box to add an image of a guitar to the page.

  1. iconDrag the Floating Box icon from the Basic set () in the Objects palette to the area below the component on the page. (You can also double-click the Floating Box icon to place a floating box at the insertion point on the page.)

    A floating box appears on the page in the upper left corner below the component, and the Inspector changes to the Floating Box Inspector. When you add a single floating box to a page, GoLive inserts a small yellow marker labeled SB, which stays at the original point of insertion even after you move the floating box.

    Figure 47Adding floating box to page

    It's important to name floating boxes, so that you can differentiate them from one another. GoLive displays their names in the Floating Boxes palette and in lists that you choose from when applying actions to them or animating them. Now you'll name the floating box according to the contents that you'll add to it.

  2. In the Floating Box Inspector, enter Image in the Name text box.

    Now you'll add the guitar image to the floating box.

  3. Drag guitar.gif from the images folder in the Files tab of the site window to the floating box on the page.

    The guitar image appears in the floating box.

  4. Click in the blank space outside the image to deselect it.

    You can convert non-overlapping floating boxes and their contents into objects on a layout grid in a new untitled page. This is useful if you need a table-based design for the page in addition to your DHTML layers-based design. If the floating box contains text, it converts into a layout text box on the grid. The position, size, and background color attributes of the floating box are retained. GoLive creates a new page to contain the converted objects, keeping the original page of floating boxes intact.

Adding the second floating box

Now you'll add a second floating box to the page that will contain a description of the guitar shown on the page.

  1. Position the pointer immediately to the right or immediately below the yellow floating box marker.

  2. Double-click the Floating Box icon in the Objects palette. The second floating box appears.

  3. In the Floating Box Inspector, enter Description in the Name text box to name the second floating box.

    For now you'll move the Description floating box to an empty area of the page.

  4. Move the pointer over an edge of the Description floating box, so that the pointer turns into a hand pointing left. Then drag the Description floating box to the right of the Image floating box.

    Figure 48Dragging second floating box to right of first one

    Now you'll add text to the Description floating box. You'll enter a description of the guitar shown on the page.

  5. Click inside the Description floating box, and type 1981 Gibson ES-347. Then drag to select the text you've just typed, click the Bold button () on the toolbar, and choose 5 from the Font Size menu on the toolbar. If you have difficulty selecting the text, enlarge the floating box slightly.

    Figure 49

    Now you'll add color to the selected text using the emphasis color stored in the custom color palette.

  6. In the Site Color list () in the Color palette, select the emphasis color, so that it appears in the preview pane.

  7. Drag the color from the preview pane to the selected text on the page.

    The color of the text changes to red.

  8. Click in the blank space outside the selected text to deselect it.

    Now you'll precisely position the Description floating box using the Floating Box Inspector.

    NOTE

    If the values used in this section don't work for you, you can adjust them as necessary. Use the values given as a guide.

  9. Move the pointer over an edge of the Description floating box, so that the pointer turns into a hand pointed to the left. Then click an edge of the floating box to select it.

  10. In the Floating Box Inspector, enter 250 for Left, and enter 300 for Top. Press Enter or Return.

    The floating box is repositioned 250 pixels from the left edge and 300 pixels from the top of the page.

    Now you'll resize the floating box using the Floating Box Inspector.

  11. In the Floating Box Inspector, enter 200 for Width, press Tab to jump to the next text box, and enter 100 for Height. Press Enter or Return.

    The floating box is resized to 200 pixels in width and 100 pixels in height.

    Figure 50Repositioning and resizing floating box

    You can also resize a floating box by selecting it and dragging one of its handles.

  12. Choose File > Save to save hottest.html.

    Laying out pages with floating boxes

    Floating Boxes can be positioned precisely, because they are implemented using the DIV element. The DIV element, formatted with a CSS ID style for the width, visibility, and absolute position of the floating box, instructs the browser to create a subdivision that is not part of the normal flow of HTML within the page.

    Floating boxes can contain background images or color, and they can inherit properties from the page's cascading style sheet (see "Using Cascading Style Sheets" in the Adobe GoLive 6.0 online Help). For table-based designs, you can convert non-overlapping floating boxes and their contents to a new page with the contents duplicated on a layout grid (see "Converting floating boxes into layout grids" in the Adobe GoLive 6.0 online Help).

    Resizing and positioning floating boxes

    You can position floating boxes accurately using the Floating Box Inspector and a page grid that you define in the Grid Settings dialog box. By assigning a z-index to each floating box, you can control the order that the boxes are stacked on top of each other (for example, a floating box with a z-index of 2 appears in front of a box with a z-index of 1).

    You can also use the Transform and Align palettes to position, resize, and align multiple floating boxes in the same way as other objects (see "Repositioning, aligning, or distributing objects" in the Adobe GoLive 6.0 online Help).

    –-From the Adobe GoLive 6.0 online Help.

Visitors using older Web browsers may not see a Web page correctly if it contains features and technology such as JavaScript, frames, and floating boxes. Also, not all browsers and browser versions support these features equally. You can use a browser-switch script to direct visitors to separate pages if your page contains elements that are not supported equally by older browsers or all browser versions. For more information, see "Creating a browser switch action" on page 356.

Peachpit Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from Peachpit and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about Peachpit products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites; develop new products and services; conduct educational research; and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email ask@peachpit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by Adobe Press. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.peachpit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020