How to create this theme in Site Customization?

I have created this style for Envato Forums. it’s just manipulating the DOM.

Here is how it looks like :

IMAGE LINK (new users can’t put images)

Actual Code to Install : Envato : Old Forum Style for New Forums · GitHub

I’m new to Discourse. I’d love to know how this can be integrated in “Site Customization”

Link is broken, do you have a local discourse install or one where you are an admin ?

This is his image:

https://discourse-cdn.global.ssl.fastly.net/envato/uploads/default/original/2X/0/0fbcecd5022e0d7fffa58366df1e1235d816e368.png

edit: d’oh

Sorry, I mean the gist link is broken.

You might get some ideas for how to include a thumbnail image from this post: Reddit Style picture thumbnail on the left

Sorry, here is the actual link to the CSS & JS Code

Oops… cant post more than two link :slight_smile: please see the original post for the updated link :+1:

observeDOM( document.getElementById('main-outlet') ,function(){
     setTimeout(function(){
            $('.topic-list-item').not('.old-forum-loaded').each(function() {
             showAvatars( $(this) );
             hideCustomTags( $(this) );
             });
        },1000)
});

You should be hooking into Ember to do these :smile: That’ll let you filter out the tags before they even go into the DOM.

I wish I could. but I’m new to the Ember thing :stuck_out_tongue: