Quote from
Katsuro on April 26, 2020, 8:41 pm
Quote from
Din-up on February 24, 2020, 2:30 pm
Hi there !
could you tell me how to decrease the size of the advertisement on the forum
thank you
You can assign a class to the ad image (what I use is ‘select-image’), then the css for that would be something like this:
.select-image {
width: 100%;
height: auto;
}
That should make the image fill the width of the forum page, but scale appropriately heightwise. If the ad image is a skyscraper (higher than wide), then just swap the 100% and auto
Quote from
Din-up on February 24, 2020, 2:30 pm
Hi there !
could you tell me how to decrease the size of the advertisement on the forum
thank you
You can assign a class to the ad image (what I use is ‘select-image’), then the css for that would be something like this:
.select-image {
width: 100%;
height: auto;
}
That should make the image fill the width of the forum page, but scale appropriately heightwise. If the ad image is a skyscraper (higher than wide), then just swap the 100% and auto
Asgaros has reacted to this post.