Forums / Setup & design / How fixed the height of the body?

"Please Note:
  • At the specific request of Ibexa we are changing this projects name to "Exponential" or "Exponential (CMS)" effective as of August, 11th 2025.
  • This project is not associated with the original eZ Publish software or its original developer, eZ Systems or Ibexa".

How fixed the height of the body?

Author Message

Daniele Cacace

Wednesday 02 February 2005 8:29:07 am

How fixed the height of the body?

Frederik Holljen

Wednesday 02 February 2005 1:27:47 pm

Sorry, what are you trying to do?

Łukasz Serwatka

Wednesday 02 February 2005 2:17:29 pm

You can do that in ez_root/design/base/stylesheets/site.css

div#allcontent
{
    width: 750px;
    margin: 0 auto 0 auto;
    height: 700px; /* your height */
} 

or in ez_root/design/base/stylesheets/core.css

body
{
    height: 700px; /* your height */
} 

Personal website -> http://serwatka.net
Blog (about eZ Publish) -> http://serwatka.net/blog

Daniele Cacace

Thursday 03 February 2005 12:19:21 am

TNX

Daniele Cacace

Thursday 03 February 2005 12:28:22 am

the first idea is ok:

You can do that in ez_root/design/base/stylesheets/site.css

div#allcontent
{
    width: 750px;
    margin: 0 auto 0 auto;
    height: 700px; /* your height */
} 

the second no :|

TNX Lukasz Serwatka :)