How to put objects in a circle in Blender

Blender: How to Put an Object in a Circle (Using Array Modifier)

For my next Blender project, I needed to know how to put an object in a circle. So, I had to figure out how to do that. It's actually not that hard to arrange objects in a circle in Blender! I wrote this information down so that if others need it,…
Conditionally display featured post problem after Wordpress upgrade

Conditionally Display Featured Image Problem (WordPress) (Fixed)

I've been working on my website a lot in the past few dates. Updating, upgrading, fixing issues. As my site runs on Wordpress, I use a couple of plugins to have the content be displayed in the way that I like. One of these plugins is called "Conditionally display featured image…
How to remove the style picker in Cubecart (AMZIN skin)

How to remove the style picker in Cubecart (AMZIN skin)

I work with the free Cubecart skin called AMZIN and to optimize the eCommerce shop I'm developing, I'm making a couple of changes. Today, I want to remove the style picker that is shown at the bottom of my page. It's very easy to remove that button overlay that gives the…
Where is the eyedropper in Blender Grease Pencil

Where is the eyedropper in Blender Grease Pencil

I've embarked on a journey to learn how to make 2D art in a 3D environment in Blender's Grease Pencil. Blender's Grease Pencil tool is a popular choice for creating 2D animations within its 3D environment. One essential feature of Grease Pencil is the eyedropper tool, also known as the color…
GIMP Tools Not Working

GIMP Problem: Tools Don’t Work (SOLVED)

I've been running into this weird issue where sometimes when starting GIMP, most of the tools don't work. I can't use the brush tool, can't add text or erase anything. Upon trying to use the brush tool in GIMP, the brush stays outside of the image - it can't be pulled…
How to fix PNG CRC error in Linux

Fixing png CRC errors on Linux

To check whether an image has CRC errors you can run: `optipng broken-image.png` You will receive a warning similar to: `Warning: iCCP: CRC error` if your image has CRC errors. To quick-fix the errors, you can use imagemagick, like so: `convert broken-image.png broken-image-fix.png` Rerunning `optipng` on the fixed image should confirm…
How to break a solid object in Blender

How To Break a Pillar in Blender

For a 3D project, I needed a broken pillar. Apparently it's not possible to make an object solid in Blender, so I had to do a bit of searching and experimenting to try and figure this one out. I would like to share with you how I did this! First, I…
Blender Bread Material Tutorial

Blender Eevee: Simple Bread Material (No Texture)

I made a quick and simple loaf of bread in Blender and colored it in Vertex Paint. Then, I used a Noise Texture and Math Node (Multiply) to create a bread-like effect. This was achieved without the use of an image texture. Please click on the image above to see a…
Blender: Active Object is Not a Selected Mesh – Ctrl+J Doesn’t Work

Blender: Active Object is Not a Selected Mesh – Ctrl+J Doesn’t Work

While working on a new project in Blender 3.2.0, I ran into the following problem: I wanted to use Ctrl+J to join several meshes/objects, but it didn't work. Blender said "Active object is not a selected mesh". I started looking into what the problem was, and I came across the hint…
how to mirror an object in blender

Blender: How to Mirror an Object

Let's say you're modeling a little fox. You got its head, its tail, ears and paws. But then you need to mirror those ears and paws to the exact opposite part of the body of the fox. How do you do that? Well, this is what I was running into when…