Strong communities are built on shared goals and trust.
  • Join Administrata today and get 15 free posts!

    Register now and claim a free content order to boost your community activity instantly.

    Register Now

gametalk.png

Game Talk Forum

We talk games. Period
I noticed that the "About the Game Talk Announcements category" has the default new category text rather than unique text. Also interesting that you went with Discourse for your community!
 
Discourse I think is rendering at 43x43. I only used Discourse once before. And it was a while ago. So I don't remember all the settings.
It’s possible to edit the size of the logo by directly adjusting the logo size by adding CSS to the site’s theme.

Just Select the theme you are using and click on Edit CSS/HTML.

In the Common > CSS section, add something like this:


.d-header .title img {
max-height: 80px; /* or whatever size you want */
width: auto;
}

If the logo shrinks too much on mobile, then you can add this:
@media (max-width: 768px) {
.d-header .title img {
max-height: 60px;
}
}

however, the width and height may need to be adjusted.
 
It’s possible to edit the size of the logo by directly adjusting the logo size by adding CSS to the site’s theme.

Just Select the theme you are using and click on Edit CSS/HTML.

In the Common > CSS section, add something like this:


.d-header .title img {
max-height: 80px; /* or whatever size you want */
width: auto;
}

If the logo shrinks too much on mobile, then you can add this:
@media (max-width: 768px) {
.d-header .title img {
max-height: 60px;
}
}

however, the width and height may need to be adjusted.
Thanks for the info. @Timelord_ maybe that will help you out.
 
I think the direct height needs to be adjusted since it is currently relative to the font size of the parent element using the em unit. You can shrink it down to a maximum of 64px with the image in the current state.

CSS:
#site-logo {
    height: 64px !important;
}
Using an image editor to crop out some of the extra space would probably be best. For example:

new.jpg

Now, you don't have to modify the CSS whatsoever with the turnout:

Game-Talk-Forums-Game-Talk-Forums-03-04-2025_12_02_AM.png
 
I think the direct height needs to be adjusted since it is currently relative to the font size of the parent element using the em unit. You can shrink it down to a maximum of 64px with the image in the current state.

CSS:
#site-logo {
    height: 64px !important;
}
Using an image editor to crop out some of the extra space would probably be best. For example:

View attachment 1314

Now, you don't have to modify the CSS whatsoever with the turnout:

View attachment 1315
Do you have a recommended image editor that can help with this?

By the way - thank you for this!
 
It’s possible to edit the size of the logo by directly adjusting the logo size by adding CSS to the site’s theme.

Just Select the theme you are using and click on Edit CSS/HTML.

In the Common > CSS section, add something like this:


.d-header .title img {
max-height: 80px; /* or whatever size you want */
width: auto;
}

If the logo shrinks too much on mobile, then you can add this:
@media (max-width: 768px) {
.d-header .title img {
max-height: 60px;
}
}

however, the width and height may need to be adjusted.
Thank you for this! I will test it in my sandbox and get back you with the results.
 

Similar threads

  • Link directory item Link directory item
Replies
4
Views
203
  • Link directory item Link directory item
Replies
1
Views
199
  • Link directory item Link directory item
Replies
3
Views
122
  • Link directory item Link directory item
Replies
0
Views
93

Users who are viewing this thread

Back
Top