Entrance Chat Gallery Guilds Search Everyone Wiki Login Register

Welcome, Guest. Please login or register. - Thinking of joining the forum??
August 16, 2025 - @949.77 (what is this?)
Activity rating: Four Stars Posts & Arts: 55/1k.beats Unread Topics | Unread Replies | My Stuff | Random Topic | Recent Posts Start New Topic  Submit Art
News: :4u: ~~~~~~~~~~~  :4u: Super News: Upload a banner! (or else!)

+  MelonLand Forum
|-+  Forum Hub
| |-+  ⛄︎ ∙ MelonLand Info & Questions
| | |-+  MelonLand Ads/Banner System


« previous next »
Pages: 1 [2] Print
Author Topic: MelonLand Ads/Banner System  (Read 3806 times)
Kie
Jr. Member
**


I won a typo chapmionship once actualyl

⛺︎ My Room
SpaceHey: Friend Me!
iMood: Awwkie

View Profile WWWArt

Joined 2025!
« Reply #15 on: April 23, 2025 @352.40 »

is there a smart way to display these in a smaller box...?

I'm assuming you are on the free neocities plan and using the iframe code. The quickest way to do it is just to scale the iframe through CSS:

Code
#melonlink {
  transform: scale(0.75);
}

Alternatively, you could use one of the solutions in this thread and use javascript to change the iframe CSS.

None of these solutions are that "clean" though, but it's all that came to mind. :ohdear:

@Melooon do you think we could get the iframe code changed so that the items are responsive to the body size? :O
Something like the image width set to 100%
Logged

Oh shit I have to come up with a signature!! :drat:
villain
Full Member ⚓︎
***


it/he/they

⛺︎ My Room

View Profile WWW

Great Posts PacmanYellowest Scot AwardJoined 2024!
« Reply #16 on: April 23, 2025 @470.50 »

I'm assuming you are on the free neocities plan and using the iframe code. The quickest way to do it is just to scale the iframe through CSS:

I have supporter - I did think about just scaling the whole thing, but the text on some of them (including mine ^_^;;) is already a little small so I didn't want to make them illegible... that's why I was trying a marquee!
Logged

chipyowo
Jr. Member ⚓︎
**


ms paint enthusiast and music maker. clownie :o)

⛺︎ My Room
RSS: RSS

View Profile WWWArt

Joined 2025!
« Reply #17 on: April 23, 2025 @760.14 »

i thought about making a caroussel with them but lol idk how to code one TvT
Logged



Loebas
Full Member ⚓︎
***


⛺︎ My Room
Matrix: Chat!
RSS: RSS

View Profile WWW

First 1000 Members!Joined 2023!
« Reply #18 on: June 15, 2025 @393.26 »

What a great concept. I Put the code up over on my new* forum. Which deserves some love :cheesy:

I also submitted my banner.


* Not strictly new, i setted it up in februari of this year, but there are no users ever since
Logged

My Weblog - My forum(open on mondays)
nobo
Full Member ⚓︎
***


drainnnn

⛺︎ My Room
StatusCafe: nobo
iMood: nobo
Itch.io: My Games
RSS: RSS

View Profile WWW

First 1000 Members!Joined 2023!
« Reply #19 on: June 20, 2025 @912.22 »

i setted it up in februari of this year, but there are no users ever since

Sadly this is the fate of almost every forum community. I used to struggle against it but I eventually just started looking at it on the bright side: I havea lot more time to focus on my gamedev projects when I'm not managing a community.

Something you'll probably realize over time... is that when you do get users that want to post, it's pretty difficult to get them in line with the type of community you envisioned yourself running. In a way it's more of a blessing than you realize.

Good luck either way.
Logged

Loebas
Full Member ⚓︎
***


⛺︎ My Room
Matrix: Chat!
RSS: RSS

View Profile WWW

First 1000 Members!Joined 2023!
« Reply #20 on: June 21, 2025 @298.53 »

I'm happy to report that since i placed the banner on melonlands banner thingy i got some users that registered and posted on my forum, so i have fate. :smile:

I got some plans with boykisser.nl itself, in making a landing page for it. It now goes straight to the weblog of me.
It actually started out with only a weblog. But since i am settling in the webrevival community, i wanted to make my website a part of it. Only thing, it means if i move the blog, a lot of rss readers are going to break. Many users have subscribed to my rss feed.
So it is still something for the long term, i could make a blogpost about it in advance. But we will see, its not something i want to do next week. :ozwomp:
Logged

My Weblog - My forum(open on mondays)
Furbisms
Jr. Member ⚓︎
**


What's up party people?

⛺︎ My Room

View Profile WWWArt

Joined 2025!
« Reply #21 on: August 01, 2025 @44.39 »

I added the iframe version to my site as I'm a free neocities user, but how do I remove the scrollbars? They're covering most of the banner for me :cry: I can't figure out why that's happening.

Edit: I ended up restyling it so they went away, it isn't exactly the same but that's fine with me. Still let me know if there's another solution though.
« Last Edit: August 01, 2025 @50.00 by Furbisms » Logged

candycanearter07
Hero Member ⚓︎
*****


i like slimes

⛺︎ My Room
SpaceHey: Friend Me!
StatusCafe: candycanearter
Itch.io: My Games
RSS: RSS

View Profile WWWArt

Goomy, I Choose You!Suck At Something September - Did It!uh oh! a pigeon got in!Artsy Candy CaneJoined 2024!
« Reply #22 on: August 01, 2025 @65.83 »

I added the iframe version to my site as I'm a free neocities user, but how do I remove the scrollbars? They're covering most of the banner for me :cry: I can't figure out why that's happening.

Edit: I ended up restyling it so they went away, it isn't exactly the same but that's fine with me. Still let me know if there's another solution though.

https://developer.mozilla.org/en-US/docs/Web/CSS/overflow Setting overflow: hidden or clip is a pretty good cross-platform way to completely hide any scrollbars. Keep in mind hidden and clip interact slightly differently - hidden just hides the content below the bounding box, but it CAN be scrolled with js, whereas clip actively removes the content outside the box and it cant be scrolled in any way. For this, either should be fine tho
Logged

new to oldnet be nice




Furbisms
Jr. Member ⚓︎
**


What's up party people?

⛺︎ My Room

View Profile WWWArt

Joined 2025!
« Reply #23 on: August 01, 2025 @69.61 »

https://developer.mozilla.org/en-US/docs/Web/CSS/overflow Setting overflow: hidden or clip is a pretty good cross-platform way to completely hide any scrollbars. Keep in mind hidden and clip interact slightly differently - hidden just hides the content below the bounding box, but it CAN be scrolled with js, whereas clip actively removes the content outside the box and it cant be scrolled in any way. For this, either should be fine tho

I tried overflow hidden and it didn't work, I didn't try clip though. I'll test it and see if it works.

Edit: That didn't work either, I have no clue why? I think it's something on my end at this point?
Logged

candycanearter07
Hero Member ⚓︎
*****


i like slimes

⛺︎ My Room
SpaceHey: Friend Me!
StatusCafe: candycanearter
Itch.io: My Games
RSS: RSS

View Profile WWWArt

Goomy, I Choose You!Suck At Something September - Did It!uh oh! a pigeon got in!Artsy Candy CaneJoined 2024!
« Reply #24 on: August 01, 2025 @80.10 »

I tried overflow hidden and it didn't work, I didn't try clip though. I'll test it and see if it works.

Edit: That didn't work either, I have no clue why? I think it's something on my end at this point?

Oh wait, the banner system uses a iframe, right? The issie is probably that its making a scrollbar IN the iframe context, which is considered a seperate rendering context and ignores the "external" css. I don't know if theres any way to override that beyond melon manually adding overflow: hidden on their end..
Logged

new to oldnet be nice




Furbisms
Jr. Member ⚓︎
**


What's up party people?

⛺︎ My Room

View Profile WWWArt

Joined 2025!
« Reply #25 on: August 01, 2025 @82.51 »

Oh wait, the banner system uses a iframe, right? The issie is probably that its making a scrollbar IN the iframe context, which is considered a seperate rendering context and ignores the "external" css. I don't know if theres any way to override that beyond melon manually adding overflow: hidden on their end..

Ahhh okay that makes sense. I only really learned how to use iframes relatively recently so I did not know that. Thanks for the help, though. What I did fixes it fine enough for me so I'm not super worried at this point :happy:
Logged

Pages: 1 [2] Print 
« previous next »
 

Melonking.Net © Always and ever was! SMF 2.0.19 | SMF © 2021 | Privacy Notice | ~ Send Feedback ~ Forum Guide | Rules | RSS | WAP | Mobile


MelonLand Badges and Other Melon Sites!

MelonLand Project! Visit the MelonLand Forum! Support the Forum
Visit Melonking.Net! Visit the Gif Gallery! Pixel Sea TamaNOTchi