WordPress – Artisteer – Theme Height
After having scoured the Internets to find an answer and not really being able to find an answer to the question How do I set the theme height of an Artisteer theme? I decided to find out myself.
Actually, it was not that hard.
Find the file:
/yourdomain.com/wp-content/themes/YourTheme/style.css
Edit it and look for the section
.Post-body
{
Simply add the height (in pixels) that you want your theme to be. Afterwards, it should look something like this:
.Post-body
{
position: relative;
z-index: 0;
margin: 16px;
height: 600px;
}