# Ads

On the Ads page, you'll find a list of advertising spaces. Next to each advertising space, you can see whether it's In Use or Available. To add HTML advertisement code to these spaces, simply click the button next to the advertising space and add the code. To remove the advertisement from a space, you'll need to delete the HTML code.

# Responsive Image Ads

If the image advertisement you've added is not responsive, you can make it responsive by using Bootstrap's img-fluid class. Here's an example:

<img src="your-image-url.jpg" class="img-fluid" alt="Image Description">

In the example above, you add the img-fluid class to your image using the img tag. This class ensures that your image automatically adapts to the browser screen size. Additionally, you can specify the image file's URL with the src attribute and provide a text-based description of the image with the alt attribute.

This approach can help you make non-responsive image advertisements responsive, offering a more adaptable user experience.