Results 1 to 2 of 2

Thread: question about zen garden

  1. #1
    Join Date
    Apr 2011
    Posts
    19

    question about zen garden

    http://csszengarden.com/?cssfile=/213/213.css&page=0

    ^^^love this particular page. Question is how to put images like they have at the bottom. I want some pics at the bottom of a site and allow the text and content to scroll under it. anyone know how?

  2. #2
    Join Date
    Feb 2011
    Location
    Malaysia
    Posts
    130
    roughly your html will go like this:

    HTML Code:
    <body>
    <div id="wrapper">
    <div id="content">
    YOUR CONTENT GOES HERE
    </div>
    </div>
    <div id="footer">
    YOUR FOOTER IN THIS CASE THE IMAGE
    </div>
    </body>
    and your css will go like this:

    Code:
    #wrapper {
    min-height: 100%;
    height: auto !important;     /* don't remove this line. it's hack for IE min-height */
    height: 100%;                  /* don't remove this line. it's hack for IE min-height */
    margin-bottom: -100px;     /* length of your footer */
    }
    
    #content {
    padding-bottom: 200px;     /* footer's height + gap after content */
    }
    
    #footer {
    position: relative;              /* must have this in order to assign z-index */
    z-index: 1;
    height: 100px;
    background: url(image.jpg) center no-repeat;
    }
    Need help on XHTML or CSS? PM me

Similar Threads

  1. Zen Cart
    By Lechlak in forum Job Offers
    Replies: 0
    Last Post: 02 May 2010, 02:28 PM
  2. Developing a Zen Cart Affiliate Site???
    By Guybrush in forum Client & Server Side Scripting (PHP, ASP, JavaScript)
    Replies: 0
    Last Post: 09 Dec 2009, 11:40 PM
  3. New Ezine Home & Garden Site
    By diyer in forum Website Design Reviews
    Replies: 0
    Last Post: 30 May 2008, 12:25 AM
  4. eSyndicat Garden and Outdoors theme
    By darkstar_tfd in forum Website Design Reviews
    Replies: 0
    Last Post: 27 Sep 2007, 03:25 AM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •