Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Logout and posts disappear

Very simple way to softly resize your images: go to your theme’s folder, open style.css, and copy in this code at the bottom:

img {
max-width: 600px;
max-height: 800px;
}

You can change this to any values you like, but I think 600px width works with the default theme at least. Make sure there are no spaces between the number and the px. If you don’t care about height you can just take that line out. Any bigger images will be scaled down automatically – they will still load at full resolution/size, but they will display smaller. :)

Skip to toolbar