• Resolved nkwebdesign

    (@nkwebdesign)


    My client want those to be at the bottom of the footer. The problem is there not enought space. How do I fix that ?
    _______________________________________________________________________________________
    Recieved by: Date
    [] Paid Visa M.C. DIsc Amex Cash

    No Return on Special order, electrical tools, drills, taps or dies. Merchandise may not be returned unless previously authorized, in which a handling charge may be made. Prices are subject to change with out notice. No merchandise shall be returned after 30 days.

Viewing 1 replies (of 1 total)
  • Plugin Contributor Ewout

    (@pomegranate)

    Hi! You can can do this with CSS, here’s an example:

    
    @page {
    	margin-bottom: 6cm;
    }
    #footer {
    	bottom: -5cm;
    	height: 5cm;
    }
    

    Note that the footer is ‘pulled’ into the bottom page margin, so if you change the footer height you have to change this too. However, with larger footers I would recommend an alternative approach that doesn’t waste this footer space on all pages and prints the text at the bottom of the page (position:absolute) and use a separate ‘spacer’ div that is equal in height to make sure it doesn’t collide with the page content.

    Hope that helps!

Viewing 1 replies (of 1 total)
  • The topic ‘limited area in footer’ is closed to new replies.