Hello lakuriosa,
To delete these border around your images, you just access to your index.php or index.html file. You have to search for it by yourself. Then you open it with notepad. The next thing you need to do is to edit the code of the index. I’m gonna show you how to do this.
In the index file, you will find something like this: <style type=”text/css”> some codes here… </style>. What you need to do is to write some code. Let’s try writting this :
<style type=”text/css”>
some code here… (don’t care about them)
img{ border:none;} (=>add this line, its function is to delete the border around the image)
</style>
Hope this can help you!