Topic: Website Height [SOLVED]

I was wondering how I can set my body height for my gallery index page. It looks very "squished". I'd rather have it at a set height (lets say 600px or so) and then upon adding more albums, it will expand. Is this possible?

Re: Website Height [SOLVED]

Try adding the following code to your theme's 'custom.css' file. For example, if you are using the Kosel theme, edit the 'showkase/_themes/kosel/css/custom.css' file.

.type-galleryindex .content {
    min-height: 600px;
}

(You might need to clear your browser's cache before reloading your web site after making the change.)

Re: Website Height [SOLVED]

Thanks it worked well!

Re: Website Height [SOLVED]

You're welcome!