I’d like to edit the image, and downloaded it, but seems unable to replace the following with what I thought would work. I consider that my simplistic attempts won’t mesh with the Bootstrap framework?
How can I replace the following with a simple image call to a local folder? I’ve tried, but must be missing something.
I’ve been working for a couple weeks with Pinegrow, and fully commend the dev team and leadership. Makes webdev fun.
Hi @apples
Select the element with the background you want to change. Go to properties panel and scroll down to find background area, then click on the folder icon and select a method to import an image :
It looks like the issue with your background image not resizing properly might be due to the container not having a defined height or some conflicting styles. To fix this, make sure the container (like body or a div) has a height set, for example, height: 100vh; so it takes up the full screen. Then, use background-size: cover; background-position: center center; and background-repeat: no-repeat; to ensure the image covers the area without repeating.
If it still doesn’t work, check if other CSS rules are overriding these settings. Also, remember that the order of CSS rules matters, as some can override others. For example, if you use background shorthand before background-size, it might reset background-size, so always place specific rules like background-size after shorthand ones. Make sure your image is optimized and has no extra spaces around it.