Showing 2 Result(s)

WordPress – Fatal error: Allowed memory size….

This error usually shows up in WordPress in scenarios like changing hosting servers or adding extra plugins that put a strain on your server’s initial php memory limit. The solution is to allocate more PHP memory to your server (don’t confuse this with physical memory like RAM, this is simply a setting that your hosting …

CSS – Make a rounded image with the help of CSS3

Here is a simple method to create a circular effect on an image with the use of CSS3. As an example, I’ll use the image below with basic html code and CSS: <div class=”img-circular”></div> I’ll now add style for the class “img-circular”: .img-circular{ width: 300px; height: 300px; background-image: url(‘http://michaelsavin.com/wp-content/uploads/2014/09/new_image.jpg’); background-size: cover; display: block; } The …