ZacharyN
1/9/2016 - 10:57 PM

Creates a 300px circular background image

Creates a 300px circular background image

.circular {
	width: 300px;           // Set width as needed
	height: 300px;          // Set height as needed
	border-radius: 150px;   // Make adjustmets to border-radius if changing height and width
	-webkit-border-radius: 150px;
	-moz-border-radius: 150px;
	background: url(http://placehold.it/300x300) no-repeat; // Customize background image
	}