I’ve used custom content to place an image as my header and resized using the function below. However, the image won’t center and there’s more margin on the right than on the left. I’m using venue theme. Can I please have help fixing this?
div {
width: 1600px;
height: 650px;
justify-content: center;
align-items: center;
}
Hi,
If possible could you attachment the store’s url here that make easy for community to check and help you. And if your store is protecting by password you can attach too. In addition, you could point to which part you need check on your site.
Hope your issue will solve as soon.
Hi, please try to add this additional code to check
div img {
display: inline-block;
margin: 0 auto;
text-align: center;
}
There is a line missing from the code. Please try this instead
width: 1600px;
height: 650px;
display: flex;
justify-content: center;
align-items: center;