• i just moved from a blog.wordpress.com site to a custom site with a host, but now i can’t upload images. i am doing the same thing i did on the free blog version, but it says the file size is too big.

    also, the images that were on the free blog version are not loading properly on new site, text is supposed to wrap aroun images, it even says it’s set that way when i try to edit, but it doesn’t show up right.

    i’m a novice to this stuff, so please use explicit instructions in plain english…thanks.

    the site in question: phippsfinewoodworking.com

Viewing 1 replies (of 1 total)
  • it says the file size is too big

    Then you literally need to reduce the size of your images. Instead of uploading a 2000 pixel wide image, make a copy and use graphics software to reduce the image width to 1000px, then try uploading the copy. There are additional ways in which you can further an image’s filesize but this is often the most effective and the simplest.

    images that were on the free blog version are not loading properly on new site, text is supposed to wrap around images,

    Your theme’s stylesheet needs editing to replicate to deal with the fact that you’re adding images with captions. Try adding the following to the bottom of style.css:

    .aligncenter {
    	display: block;
    	margin-left: auto;
    	margin-right: auto;
    }
    
    .alignleft {
    	float: left;
    }
    
    .alignright {
    	float: right;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘can’t upload images/won’t wrap text?’ is closed to new replies.