Skip to content

Commit 6be3b5b

Browse files
Fix image sizes (#8251)
1 parent c76fa06 commit 6be3b5b

3 files changed

Lines changed: 26 additions & 26 deletions

File tree

developers/game-development/how-to-create-a-community-for-your-game.mdx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {UserStatusIcon} from '/snippets/icons/UserStatusIcon.jsx'
77
import {RobotIcon} from '/snippets/icons/RobotIcon.jsx'
88
import {LinkIcon} from '/snippets/icons/LinkIcon.jsx'
99

10-
<img src="/images/game-development/how-to-create-a-community-for-your-game/banner-how-to-create-a-community-for-your-game.webp" alt="A banner showing pieces of a community Discord server" style={{width: "auto", height: "auto"}} />
10+
<img src="/images/game-development/how-to-create-a-community-for-your-game/banner-how-to-create-a-community-for-your-game.webp" alt="A banner showing pieces of a community Discord server" style={{width: "100%", height: "auto"}} />
1111

1212
*Note: This guide was published on March 9th 2026 and was last updated on March 9th 2026.*
1313

@@ -45,11 +45,11 @@ Keeping all of this in mind will help you as you build your server and grow your
4545

4646
In order to start building a community you’ll need to start by creating a new Discord server. If you have an existing playtest or development server, you can modify it to become your community, especially if you’ve already got players in there!
4747

48-
<img src="/images/game-development/how-to-create-a-community-for-your-game/create-server.webp" alt="Discord UI for creating a server" style={{width: "auto", height: "400px"}} />
48+
<img src="/images/game-development/how-to-create-a-community-for-your-game/create-server.webp" alt="Discord UI for creating a server" />
4949

5050
Once the server exists, enable the **Community** feature in Server Settings. For an in-depth guide into requirements and setup of Community Servers check out our [Enabling Your Community Server guide](https://support.discord.com/hc/en-us/articles/360047132851-Enabling-Your-Community-Server).
5151

52-
<img src="/images/game-development/how-to-create-a-community-for-your-game/community-server.webp" alt="Discord server setting to turn a server into a community server" style={{width: "auto", height: "400px"}} />
52+
<img src="/images/game-development/how-to-create-a-community-for-your-game/community-server.webp" alt="Discord server setting to turn a server into a community server" />
5353

5454
This unlocks a few tools that matter for a game developer:
5555

@@ -58,7 +58,7 @@ Once the server exists, enable the **Community** feature in Server Settings. For
5858
- **Server Discoverability**: With Community enabled, players can find and join your server through Discord's discovery features. This is how your server shows up when players search for your game.
5959
- **Server Insights**: Once 500 members join, you get detailed engagement and retention data like weekly communicators, what channels are most used, where people are coming from, and much more. [Read more about server insights here](https://support.discord.com/hc/en-us/articles/360032807371-Server-Insights-FAQ).
6060

61-
<img src="/images/game-development/how-to-create-a-community-for-your-game/server-insights.webp" alt="Insights dashboard for a community server" style={{width: "auto", height: "400px"}} />
61+
<img src="/images/game-development/how-to-create-a-community-for-your-game/server-insights.webp" alt="Insights dashboard for a community server" />
6262

6363
<Tip>
6464

@@ -97,7 +97,7 @@ These are two-way discussion spaces where members talk to you and to each other.
9797

9898
Give your channels a topic by right clicking the channel then > Edit Channel > Channel Topic. This topic will display next to the channel’s name when it’s open, reminding players what is appropriate to talk about in that channel.
9999

100-
<img src="/images/game-development/how-to-create-a-community-for-your-game/channel-topic.webp" alt="A server channel with a topic set" style={{width: "auto", height: "auto"}} />
100+
<img src="/images/game-development/how-to-create-a-community-for-your-game/channel-topic.webp" alt="A server channel with a topic set" />
101101

102102
</Tip>
103103

@@ -144,7 +144,7 @@ Everyone that joins your server will have a default `@everyone` role. You don’
144144

145145
With a nitro boosted community server you can get access to custom role icons that make it even easier to spot a developer or moderator at a glance.
146146

147-
<img src="/images/game-development/how-to-create-a-community-for-your-game/role-icon.webp" alt="A moderator with a shield emoji as a role icon" style={{width: "auto", height: "auto"}} />
147+
<img src="/images/game-development/how-to-create-a-community-for-your-game/role-icon.webp" alt="A moderator with a shield emoji as a role icon" />
148148

149149
</Tip>
150150

@@ -194,13 +194,13 @@ Keep your onboarding short. Every additional step is a chance for a new member t
194194

195195
To set up Onboarding, go to Server Settings > Onboarding. [Read more about setting up onboarding here](https://support.discord.com/hc/en-us/articles/11074987197975-Community-Onboarding-FAQ).
196196

197-
<img src="/images/game-development/how-to-create-a-community-for-your-game/server-onboarding-settings.webp" alt="Server onboarding settings for a community server" style={{width: "auto", height: "400px"}} />
197+
<img src="/images/game-development/how-to-create-a-community-for-your-game/server-onboarding-settings.webp" alt="Server onboarding settings for a community server" />
198198

199199
<Tip>
200200

201201
You can preview what your onboarding looks like to a new player by going to Server Settings > Onboarding and selecting Preview.
202202

203-
<img src="/images/game-development/how-to-create-a-community-for-your-game/server-onboarding-preview.webp" alt="The preview option for community server onboarding" style={{width: "auto", height: "auto"}} />
203+
<img src="/images/game-development/how-to-create-a-community-for-your-game/server-onboarding-preview.webp" alt="The preview option for community server onboarding" />
204204

205205
</Tip>
206206

@@ -264,7 +264,7 @@ Community Invites are powerful server invites that can automatically assign role
264264
- **Role assignment**: Automatically gives a member one or more roles the moment they accept an invite. You can create these directly in Discord's UI without any code, or generate them programmatically through the API. Either way, the role sticks even after the invite expires and a user can get the roles even if they’re already in your server.
265265
- **Targeted invites**: Lets you upload a list of specific Discord user IDs. Only those users can see and accept the invite. This lets you control exactly who gets in, rather than anyone with the link.
266266

267-
<img src="/images/community-invite-ui.webp" alt="Creating a community invite with roles" style={{width: "auto", height: "350px"}} />
267+
<img src="/images/community-invite-ui.webp" alt="Creating a community invite with roles" />
268268

269269
### What You Can Do With Them
270270

@@ -316,7 +316,7 @@ Your Discord link should be as easy to find as your store page link. Anywhere a
316316

317317
If you’ve implemented the Discord Social SDK, your Rich Presence can include a "Join the Community" button visible to all of a player's Discord friends while they’re in your game. This makes every player a passive advocate for your server to their entire social graph.
318318

319-
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-buttons.webp" alt="Rich Presence with a button to join the community" style={{width: "auto", height: "auto"}} />
319+
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-buttons.webp" alt="Rich Presence with a button to join the community" />
320320

321321
<Card title="How Do I Get My Game Seen?" href="/developers/game-development/how-to-get-your-game-seen" icon={<UserStatusIcon />} horizontal>
322322
Implement Rich Presence with game details, lobby joining, game launching, and store links
@@ -341,7 +341,7 @@ You don't need to run events constantly, one well-run event per month gives your
341341

342342
Click the Events tab at the top of your server and then Create Event. You can set the event in a stage channel, a voice channel, or at an external link if you're streaming somewhere else. Set a start time, title, write a short description, and publish it. Members will see it in the server and can choose to be notified when it begins. Use your `#announcements` channel to broadcast that you created an event and tag relevant roles that might be interested in it for better visibility.
343343

344-
<img src="/images/game-development/how-to-create-a-community-for-your-game/schedule-event.webp" alt="Scheduling an event for a playtest in a server" style={{width: "auto", height: "400px"}} />
344+
<img src="/images/game-development/how-to-create-a-community-for-your-game/schedule-event.webp" alt="Scheduling an event for a playtest in a server" />
345345

346346
<Tip>
347347

developers/game-development/how-to-get-your-game-seen.mdx

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {InboxIcon} from '/snippets/icons/InboxIcon.jsx'
77
import {DoorEnterIcon} from '/snippets/icons/DoorEnterIcon.jsx'
88
import {RobotIcon} from '/snippets/icons/RobotIcon.jsx'
99

10-
<img src="/images/game-development/how-to-get-your-game-seen/banner-how-to-get-your-game-seen.webp" alt="A banner showing rich presence for a fictional game" style={{width: "auto", height: "auto"}} />
10+
<img src="/images/game-development/how-to-get-your-game-seen/banner-how-to-get-your-game-seen.webp" alt="A banner showing rich presence for a fictional game" style={{width: "100%", height: "auto"}} />
1111

1212
*Note: This guide was published on March 9th 2026 and was last updated on March 9th 2026.*
1313

@@ -17,7 +17,7 @@ When a player has activity sharing enabled, Discord will automatically detect wh
1717

1818
Improving your Rich Presence integration is one of the easiest ways to start getting more value out of Discord. In this article we'll cover everything you need to know to integrate more tightly with Discord and start finding new players.
1919

20-
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-intro.webp" alt="Rich Presence in a user's profile on Discord" style={{width: "auto", height: "400px"}} />
20+
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-intro.webp" alt="Rich Presence in a user's profile on Discord" />
2121

2222
---
2323

@@ -126,7 +126,7 @@ Testing Rich Presence is quick:
126126
- Return to your game to see authentication was successful
127127
- Check out your profile in Discord!
128128
129-
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-basic.webp" alt="Rich Presence with details and state set" style={{width: "auto", height: "auto"}} />
129+
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-basic.webp" alt="Rich Presence with details and state set" />
130130
131131
---
132132
@@ -245,7 +245,7 @@ Timers work great for:
245245
- Showing the length of a speedrun attempt
246246
- Showing how long a competitive match has been fought in
247247
248-
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-timestamp-elapsed.webp" alt="Rich Presence with an elapsed time counting up" style={{width: "auto", height: "auto"}} />
248+
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-timestamp-elapsed.webp" alt="Rich Presence with an elapsed time counting up" />
249249
250250
### Countdown Timer (Time Remaining)
251251
@@ -284,7 +284,7 @@ Countdown timers work great for:
284284
- Counting down the time until an event starts
285285
- Showing tense moments like challenges with a time limit or a boss fight
286286
287-
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-timestamp-countdown.webp" alt="Rich Presence with a countdown timer counting down" style={{width: "auto", height: "auto"}} />
287+
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-timestamp-countdown.webp" alt="Rich Presence with a countdown timer counting down" />
288288
289289
---
290290
@@ -303,7 +303,7 @@ You can upload up to 300 custom assets per application.
303303
304304
</Tip>
305305
306-
<img src="/images/game-development/how-to-get-your-game-seen/portal-rich-presence-assets.webp" alt="The Developer Portal where you upload Rich Presence image assets" style={{width: "auto", height: "auto"}} />
306+
<img src="/images/game-development/how-to-get-your-game-seen/portal-rich-presence-assets.webp" alt="The Developer Portal where you upload Rich Presence image assets" />
307307
308308
### Using Assets in Code
309309
@@ -350,9 +350,9 @@ Activity->SetAssets(Assets);
350350
351351
</CodeGroup>
352352
353-
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-images.webp" alt="Rich Presence with images set" style={{width: "auto", height: "auto"}} />
353+
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-images.webp" alt="Rich Presence with images set" />
354354
355-
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-images-tooltip.webp" alt="Rich Presence with images set that have tooltips on hover" style={{width: "auto", height: "auto"}} />
355+
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-images-tooltip.webp" alt="Rich Presence with images set that have tooltips on hover" />
356356
357357
### Using External URLs
358358
@@ -547,7 +547,7 @@ Unlike the other Rich Presence fields, you can’t see buttons on your own Rich
547547
548548
</Tip>
549549
550-
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-buttons.webp" alt="Rich Presence with buttons to a game store and the game's community" style={{width: "auto", height: "auto"}} />
550+
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-buttons.webp" alt="Rich Presence with buttons to a game store and the game's community" />
551551
552552
---
553553
@@ -605,7 +605,7 @@ Activity->SetParty(Party);
605605
606606
This displays as "In Lobby (1 of 4)", instantly communicating that this player has created a lobby and 3 more friends can join them.
607607
608-
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-party.webp" alt="Rich Presence showing the player in a party of 4" style={{width: "auto", height: "auto"}} />
608+
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-party.webp" alt="Rich Presence showing the player in a party of 4" />
609609
610610
### Setting Up Invites
611611
@@ -689,7 +689,7 @@ When using invites with Rich Presence the join button will take precedence over
689689
690690
Combining game invites with lobbies in the Social SDK allows players to join their friends both through your game and through Rich Presence in Discord. For multiplayer games this is huge! Your future players are already on Discord and they can now join their friends directly through invites or ask to join friends without even launching the game. For a complete implementation guide of lobbies and invites using the Social SDK see [Managing Game Invites](/developers/discord-social-sdk/development-guides/managing-game-invites) and [Managing Lobbies](/developers/discord-social-sdk/development-guides/managing-lobbies).
691691
692-
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-invite.webp" alt="Rich Presence with invites enabled showing the join button" style={{width: "auto", height: "auto"}} />
692+
<img src="/images/game-development/how-to-get-your-game-seen/rich-presence-invite.webp" alt="Rich Presence with invites enabled showing the join button" />
693693
694694
---
695695
@@ -736,4 +736,4 @@ Rich Presence scratches the surface of what the Discord Social SDK can do for yo
736736
</Card>
737737
</Columns>
738738
739-
<img src="/images/game-development/how-to-get-your-game-seen/inline-how-to-get-your-game-seen.webp" alt="A banner showing rich presence for a fictional game" style={{width: "auto", height: "auto"}} />
739+
<img src="/images/game-development/how-to-get-your-game-seen/inline-how-to-get-your-game-seen.webp" alt="A banner showing rich presence for a fictional game" style={{width: "100%", height: "auto"}} />

developers/game-development/how-to-grow-your-game.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {ListViewIcon} from '/snippets/icons/ListViewIcon.jsx'
77
import {UserStatusIcon} from '/snippets/icons/UserStatusIcon.jsx'
88
import {RobotIcon} from '/snippets/icons/RobotIcon.jsx'
99

10-
<img src="/images/game-development/how-to-grow-your-game/banner-how-to-grow-your-game.webp" alt="A banner showing players chatting about playing a game together" style={{width: "auto", height: "auto"}} />
10+
<img src="/images/game-development/how-to-grow-your-game/banner-how-to-grow-your-game.webp" alt="A banner showing players chatting about playing a game together" style={{width: "100%", height: "auto"}} />
1111

1212
Building and publishing a game is hard. Getting players to discover, share, and play it is even harder. With dozens of incredibly strong games released each day, some with huge marketing budgets, it's harder than ever to build a player base and keep it strong. That doesn't mean it's impossible to do though, and Discord has a set of tools to help you.
1313

@@ -25,7 +25,7 @@ Using Discord as part of your game development strategy can help build community
2525

2626
---
2727

28-
<img src="/images/game-development/how-to-create-a-community-for-your-game/banner-how-to-create-a-community-for-your-game.webp" alt="A banner showing pieces of a community Discord server" style={{width: "auto", height: "auto"}} />
28+
<img src="/images/game-development/how-to-create-a-community-for-your-game/banner-how-to-create-a-community-for-your-game.webp" alt="A banner showing pieces of a community Discord server" style={{width: "100%", height: "auto"}} />
2929

3030
# Build a Community to Capture Your Players
3131

@@ -39,7 +39,7 @@ Whether you're just starting on a new game or you've already got a beta up and r
3939

4040
---
4141

42-
<img src="/images/game-development/how-to-get-your-game-seen/banner-how-to-get-your-game-seen.webp" alt="A banner showing rich presence for a fictional game" style={{width: "auto", height: "auto"}} />
42+
<img src="/images/game-development/how-to-get-your-game-seen/banner-how-to-get-your-game-seen.webp" alt="A banner showing rich presence for a fictional game" style={{width: "100%", height: "auto"}} />
4343

4444
# Get Your Game Seen With Rich Presence
4545

0 commit comments

Comments
 (0)