Steven
15 posts
Recent Posts
-
Air Theme
Theme 2024-04-01 16:51 Post #511It may not be the cleanest way to do it, but add these lines in Desktop css .topic-list-data.num.views { display: unset; } td.topic-list-data.num.views { display: flex; order: 4; justify-content: center; align-items: center; } -
Air Theme
Theme 2024-03-05 13:24 Post #496Gonerdot: There is some empty space at the top. Is there any way to remove it? I can’t find anything using the element inspector. image1397×869 117 KB There’s a margin-top in the main-outlet class You should add this: html body #main-outlet { margin-top: 0; } Gonerdot: And I would like to... -
Minima Theme
Theme 2020-09-12 20:52 Post #26Oh ok I understand better now It comes from the header file : https://github.com/discourse/minima/blob/master/desktop/header.html It rewrites the topic list template. Original template :... -
Minima Theme
Theme 2020-09-12 19:08 Post #24I believe this is the avatar on top of the topic title image1370×345 70.7 KB -
Sam's Simple Theme
Theme 2020-04-15 13:35 Post #320I edited my previous post, I got confused with all the different versions. The code you added was for the newest version of Discourse. If I understand correctly, you need a to edit the header for a old version of Discourse, so I changed my last post with a version for a version previous than... -
Sam's Simple Theme
Theme 2020-04-15 10:49 Post #318There already is a excerpt reference, so you might want to delete line 16 first {{raw "list/topic-excerpt" topic=model}} Then, I would add this {{#if expandPinned}} {{raw "list/topic-excerpt" topic=topic}} {{/if}} Right after this {{raw "list/action-list" topic=topic... -
Sam's Simple Theme
Theme 2020-04-15 00:24 Post #316Yes the change in the avatar was in the version 2.5.0 beta 2. -
Sam's Simple Theme
Theme 2020-04-03 19:14 Post #309It’s a little bug, it will be fixed soon. If you want to fix it until then, you just need to edit the theme and in the Desktop > Header part, change the code with this ((edited, upgrade the component now)) You’ll still be able to upgrade the theme after this change -
Graceful Theme
Theme 2020-03-23 12:10 Post #74I’m not on my computer but I know there is some margin-left to correct with the class timeline-container -
Graceful Theme
Theme 2020-03-22 20:20 Post #71topic-body has his own width setting. Default: .topic-body { width: calc(690px + (11px * 2)); } Change only the 690px and keep the rest (it’s linked to the padding of the topic post) -
Sam's Simple Theme
Theme 2019-06-24 19:10 Post #285You can edit the theme in the Header section And replace it all with this: <script type='text/x-handlebars' data-template-name='list/topic-list-item.raw'> {{#if bulkSelectEnabled}} <td class='star'> <input type='checkbox' class='bulk-select'> </td> {{/if}} <td class='main-link clearfix'> {{raw... -
Sam's Simple Theme
Theme 2019-05-13 23:03 Post #283I wanted to create a theme component who can work on a majority of themes, because I didn’t really know how to edit the topic-list-item.raw.hbs, I used your work as a base. I used two parts of your theme, the last post column and the author of the topic under the title, and I put back the views... -
Sam's Simple Theme
Theme 2019-05-13 12:55 Post #281Hello @sam, is it ok if I use parts of your theme to do a theme component ? I played with this this weekend and I think I can do a theme component for those interested -
Daemonite Material Theme
Theme 2019-02-06 20:42 Post #69I don’t use the theme, but my guess is: button.create .d-icon { color: #000; } If it mess with other buttons, use this line instead #topic-footer-buttons button.create .d-icon { color: #000; } -
Daemonite Material Theme
Theme 2019-02-05 22:51 Post #66Use this in Common > CSS .d-header-icons .d-icon { color: #000; }