Topic: Make Default Minimum Post Page / Height Instead of Auto Height

I am having trouble searching this in the forums. It is only bringing me to one thread instead of allowing to search multiple to find the correct solution. Hopefully someone can point me in the right direction.

I am trying to edit the CSS so my Single Post and Single Page heights will have a minimum height of  800px (or something similar). I have some post and pages that are small paragraphs and it leaves the post body smaller than my sidebar widgets and it looks funny. Editing the Min Height I could at least make it look a little better with the height being close to the same size.  I have looked through the CSS and haven't really found and understood the correct location to edit this.

If someone could point me in right direction or link me to a thread it would be much appreciated. Sorry if this is a duplicate, was having a hard time getting the search function to bring up more than one thread with relevant information.

Thumbs up

Re: Make Default Minimum Post Page / Height Instead of Auto Height

Look at the .post and .single-post classes. You should be able to add the min-height property there.

Thumbs up

Re: Make Default Minimum Post Page / Height Instead of Auto Height

Thank You voidtrance, exactly what I needed. For anyone else who is looking to change the minimum height this is where I added it.

Under: /* single post */ (in default.css, the theme i am using)

The first line of code added:

min-height: 768px

So the line of code now looks like this:

.single .post, #main . single-post     { background: #FFF; border: 1px solid #CCC; min-height: 768px;}

Thanks Again!

Thumbs up