Message Here. Our office will be closed the week of July 3, 2012. If you have any special needs during that time please contact our hotline at: 630-555-5555


The Kane County Office of Human Services has moved to:
444 Morgansburg St.
St. Charles, IL 60175

Fill out our online form.

Important Notices:
When you call our main number, your call will be automatically routed to your primary therapist. If your number cannot be identified by our system, you will be routed to the main office number. As always, call 911 if you have a life or death situation or a medical emergency.

Please contact us at least 24 hours in advance for cancelling appointments in non-emergencies. According to our service contract, Stillwaters maintains the right to bill clients for non-emergency cancellations without 24 hour notice. Cancelled appointments will not be reimbursed by third party payors.

Trauma Recovery and Education

Instructions

Be aware that the CSS for these layouts is heavily commented. If you do most of your work in Design view, have a peek at the code to get tips on working with the CSS for the fixed layouts. You can remove these comments before you launch your site. To learn more about the techniques used in these CSS Layouts, read this article at Adobe's Developer Center - http://www.adobe.com/go/adc_css_layouts.

Clearing Method

Because all the columns are floated, this layout uses a clear:both declaration in the .footer rule. This clearing technique forces the .container to understand where the columns end in order to show any borders or background colors you place on the .container. If your design requires you to remove the .footer from the .container, you'll need to use a different clearing method. The most reliable will be to add a <br class="clearfloat" /> or <div class="clearfloat"></div> after your final floated column (but before the .container closes). This will have the same clearing effect.

Logo Replacement

An image placeholder was used in this layout in the .header where you'll likely want to place a logo. It is recommended that you remove the placeholder and replace it with your own linked logo.

Be aware that if you use the Property inspector to navigate to your logo image using the SRC field (instead of removing and replacing the placeholder), you should remove the inline background and display properties. These inline styles are only used to make the logo placeholder show up in browsers for demonstration purposes.

To remove the inline styles, make sure your CSS Styles panel is set to Current. Select the image, and in the Properties pane of the CSS Styles panel, right click and delete the display and background properties. (Of course, you can always go directly into the code and delete the inline styles from the image or placeholder there.)

Backgrounds

By nature, the background color on any div will only show for the length of the content. This means if you're using a background color or border to create the look of a side column, it won't extend all the way to the footer but will stop when the content ends. If the .content div will always contain more content, you can place a border on the .content div to divide it from the column.